Forum Replies Created
- AuthorPosts
- May 4, 2013 at 1:11 am in reply to: Compliments! And, Inconsistent watermark application issue #52910
Xpark Media
KeymasterTry using a full url for watermark, if that doesn’t work be sure that the path you’re using is relative to the wp-content folder.
How big (file size) is your watermark image? try not to use a image bigger then 1m, if not increase the memory limit on your site.
Could please provide a link to your site, do you have a cache plugin installed?
Xpark Media
KeymasterThis could be a bug, we’ll check; but installing any user role plugin will work.
Xpark Media
Keymasteryou can remove “gallerific” safely if you disable the slideshow page and you are not using the shortcode slideshow option.
use the “wp_dequeue_script” hook in your theme or custom plugin
function mytheme_dequeue_scripts(){ wp_dequeue_script( 'ims-touch' ); wp_dequeue_script( 'galleriffic' ); }add_action( 'wp_enqueue_scripts','mytheme_dequeue_scripts', 100 );
Xpark Media
Keymasterthe only time that clients will show in the “clients” table is if you are using the email notification checkout or if you add the clients manually.
all other payment gateways will not provide client information. The client table is used to assigned access to particular galleries.
Xpark Media
Keymasterdo you see any javascript or sever error, did you tried deactivating and activating the plugin? is your site using ssl?
Xpark Media
Keymasteryou can use “ims_image_custom_column” to add the new field text/area/check box this will just add the field to enter the value. But first you need to register the column.
function image_store_gallery_screen_columns(){ global $ImStore; $ImStore->columns['new_column'] = __('new field title'); }add_action( 'wp_loaded', 'image_store_gallery_screen_columns' ), 20 );
then you return the html markup for the field, for a single image
function image_store_add_new_field( $column_id, $id, $data, $attch ){ if( $column_id == 'new_column') return "html markup"; }add_filter('ims_image_custom_column', 'image_store_add_new_field', 20, 3)
Use the “save_post” action to save the data when the user saves the gallery. Run some validation like
function image_store_save_field_data( $postid, $post ) { if ( !current_user_can( 'ims_add_galleries' ) || $post->post_type != 'ims_gallery' || empty( $_POST['post_ID'] ) ) return $postid; //do something }add_filter('save_post', 'image_store_save_field_data', 20, 2)
to display the value you can use “ims_image_tag_meta” or “ims_image_tag” filters
Xpark Media
KeymasterWe had people reported issues with ProPhoto and Photocrati themes and since these are commercial themes there is really not a good way to provide support without having access to the themes.
Most of these themes really are Frameworks they may conflict with standard theme functionality.
May 3, 2013 at 10:13 pm in reply to: need a truer / safer permissions check for editing images #52897Xpark Media
Keymasterfor security reason we removed part of your message but we agree, we will be making the change on the next release.
Xpark Media
Keymastercan you provide a link to a gallery on your site, we will like to see if there is javascript error on the site.
Xpark Media
Keymasterthere is really not a fix is hard to predict and provide a fix for every single theme out there, most of the time is just css conflicts.
we wil be glad to provide css rules to fix the tabs on your theme if you provide a link to the site.
Xpark Media
Keymasterthe plugin tries to set the folder permission to “0755”, but php must not have enough permissions you can set the permission on the server level.
Talk to your host for assistance. some host have this restriction for security purposes
Xpark Media
Keymasterthe issue has been fixed in version 3.2.7
Xpark Media
Keymasternot sure I am thinking the theme. the link is fixed,
Xpark Media
Keymastermake sure that the tranlation files are located in /wp-content/languages/_ims and change the site language in your configuration file (wp-config.php), change
"define('WPLANG', '');"
to"define('WPLANG', 'es_ES');"
Xpark Media
Keymaster@rtb1982,
there is a jquery conflict, what version of wp are you on, the problem is that you are using an old jquery version. I will try to address the issue on the next release but replace file image-store/_js/touch.jquery.js with this file: touch.jquery - AuthorPosts