Xpark Media

Bring Your Business to LifeSupportImage Store: how to resize the lightbox image

Forum Replies Created

Viewing 15 posts - 91 through 105 (of 1,644 total)
  • Author
    Posts
  • in reply to: How disable resize generate thumbs? #283981
    Xpark Media
    Keymaster

    Here is another example, make sure you rename the function

    function my_custom_function_name( ){
    global $imstore,
    remove_filter( 'wp_update_attachment_metadata', array($imstore, 'generate_image_metadata'));
    remove_filter( 'wp_generate_attachment_metadata', array($imstore, 'generate_image_metadata'));
    }
    add_action( 'ims_admin_init',  'my_custom_function_name', 100 );
    in reply to: execlude Category doesn't work? #283975
    Xpark Media
    Keymaster

    Will look at it and see if there is a bug, is the category a parent, child or a stand along category?

    in reply to: UK English Language File? #283974
    Xpark Media
    Keymaster

    you can download the translation template, the standard language is English, but any of the other languages will work.

    Download translation template file

    Xpark Media
    Keymaster

    We just test it and we don’t see any issues, it may be because you have no new content created in the last 15 days or so. Try creating new content or changing the post type.

    in reply to: How to reset counts? #280367
    Xpark Media
    Keymaster

    We store all views in each post using a postmeta key “_popular_views“, if you look at the database you can delete all these entries or you can use the plugin API to use a different key in the settings

    in reply to: attach not working #280364
    Xpark Media
    Keymaster

    It is also an issue on WP 4.2 we are working on fixing it.

    in reply to: image secure on other web-site #280362
    Xpark Media
    Keymaster

    NO, the plugin must exists in the same site. If you are using WordPress multisite you may be able to switch tables but you will have to code it using image store’s API.

    in reply to: Caption wrap in lightbox #280359
    Xpark Media
    Keymaster

    @paul110590,

    This may be to a conflict with the theme. CSS should fix it. Can you send us a link to your site and we will be happy to help.

    in reply to: Another payment methods #280357
    Xpark Media
    Keymaster

    If the system accepts POST request you can do it using the settings under custom payment otherwise you have to use the Image Store API. see these hooks.

    ims_after_post_actions
    ims_before_add_to_cart
    ims_before_save_cart_{$action}

    in reply to: How disable resize generate thumbs? #280353
    Xpark Media
    Keymaster

    Add the following code to a plugin or theme.

    function my_custom_function_name( $data ){
    remove_filter( 'ims_generate_image_metadata', $metadata, $attachment_id, $path );
    return $data;
    }
    add_filter( 'wp_update_attachment_metadata',  'my_custom_function_name', 100 );
    in reply to: Image check box #280345
    Xpark Media
    Keymaster

    @kelspicknell,

    That option is only available using our Xclusive Pro version, we are woking on releasing all the functionally as an addon for users that don’t what to change their theme.

    in reply to: Adding items in cart to page #257599
    Xpark Media
    Keymaster

    @totallytech,

    The “tools widget” removed the regular navigation and gives you a widget wit all tools that you can use in the sidebar.

    You can also create a page that you can use as a checkout page. using the shortcode

    [image-store car=true]

    for the car all you have to do is include the global object into scope just before your code use: global $ImStoreCart;

    in reply to: Adding the products in a drop down? #257594
    Xpark Media
    Keymaster

    you need to add in to scope the global variable $imStore example:

    function my_custom_function(){
    global $imStore;
    echo $imStore->store_subnav();
    }

    or in your template:

     global $imStore;
    echo $imStore->store_subnav();

    the best option to keep you changes is to create a custom module or add the functions in the theme’s functions.php file by using the plugin’s hooks

    in reply to: using lightbox for the slideshow? #257590
    Xpark Media
    Keymaster

    Can you provide a link or screenshot of what you want to do with the slideshow?

    you want to use the slideshow plus allow users to click the image and get the lightbox?

    we reply to your other post on the image size

    in reply to: Remove columns on the Shopping Cart page #257589
    Xpark Media
    Keymaster

    The columns can only be removed by css at the moment, the price and color option can be removed in the pricelist.

Viewing 15 posts - 91 through 105 (of 1,644 total)