Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
Sorry to bother but when I use included JCropthumb add-on it works just great but when I hit save button at the bottom of admin screen it saves nothing to the corresponding editable's name. It saves a crop image file at file-system but I can't use it in couch because <cms:show 'name' /> gives nothing as a result.
I'm using latest Couch build and preinstalled add-on. Hope someone can help because i've spent lots of time trying to figure out what's wrong with no luck :(
answering my own question if someone needs it too:
in main add-on php file 'jcropthumb.php' change this->data to use method get_data() like this:
Code: Select all
function store_posted_changes( $post_val ){
            return $this->get_data();
}
function get_data_to_save(){
            return $this->get_data();
}
2 posts Page 1 of 1
cron