Xpark Media

Forum Replies Created

Viewing 15 posts - 646 through 660 (of 1,644 total)
  • Author
    Posts
  • Xpark Media
    Keymaster

    @dieseldave1976,

    Try 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?

    in reply to: user permission #52909
    Xpark Media
    Keymaster

    @Marjorie,

    This could be a bug, we’ll check; but installing any user role plugin will work.

    in reply to: disable touch.jquery? #52906
    Xpark Media
    Keymaster

    @Dave,

    you 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 );
    in reply to: Clients don't appear ! #52905
    Xpark Media
    Keymaster

    @aurelie,

    the 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.

    in reply to: Plugin not working after live site deployment #52904
    Xpark Media
    Keymaster

    do you see any javascript or sever error, did you tried deactivating and activating the plugin? is your site using ssl?

    in reply to: Adding custom column to image #52901
    Xpark Media
    Keymaster

    @armandsdz,

    you 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

    in reply to: Dynamic Shortcode for Client Area #52900
    Xpark Media
    Keymaster

    @CathieHeart,

    We 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.

    Xpark Media
    Keymaster

    @dave,

    for security reason we removed part of your message but we agree, we will be making the change on the next release.

    in reply to: Paylpal Not Applying Discount Codes #52894
    Xpark Media
    Keymaster

    @ashleycam3ron,

    can you provide a link to a gallery on your site, we will like to see if there is javascript error on the site.

    in reply to: All tabs displaying vertically #52893
    Xpark Media
    Keymaster

    @wanderinglawyer,

    there 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.

    in reply to: Sales Page #52892
    Xpark Media
    Keymaster

    @franklin82,

    the 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

    in reply to: Notification email #52891
    Xpark Media
    Keymaster

    @aurelie,

    the issue has been fixed in version 3.2.7

    in reply to: Gallery images open in new Window #52822
    Xpark Media
    Keymaster

    not sure I am thinking the theme. the link is fixed,

    in reply to: Translation not working on the front end. #52816
    Xpark Media
    Keymaster

    make 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');"

    in reply to: Gallery images open in new Window #52812
    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

Viewing 15 posts - 646 through 660 (of 1,644 total)