Bring Your Business to Life › Support › Image Store: how to resize the lightbox image
Forum Replies Created
- AuthorPosts
-
Xpark Media
KeymasterHere 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 );
Xpark Media
KeymasterWill look at it and see if there is a bug, is the category a parent, child or a stand along category?
Xpark Media
Keymasteryou can download the translation template, the standard language is English, but any of the other languages will work.
April 26, 2015 at 9:23 pm in reply to: Popular Posts not displaying for low "In the last _ days" #280370Xpark Media
KeymasterWe 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.
Xpark Media
KeymasterWe 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
Xpark Media
KeymasterIt is also an issue on WP 4.2 we are working on fixing it.
Xpark Media
KeymasterNO, 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.
Xpark Media
KeymasterThis 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.
Xpark Media
KeymasterIf 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}Xpark Media
KeymasterAdd 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 );
Xpark Media
KeymasterThat 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.
Xpark Media
KeymasterThe “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;
Xpark Media
Keymasteryou 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
Xpark Media
KeymasterCan 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
Xpark Media
KeymasterThe columns can only be removed by css at the moment, the price and color option can be removed in the pricelist.
- AuthorPosts