getwooplugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Can I re-apply JavaSCript events?If your theme follow wordpress ‘post-load’ event with document then you don’t have to do anything.
Here is the details about it: https://codex.www.ads-software.com/AJAX_in_Plugins#The_post-load_JavaScript_EventBut if you don’t then just call this javascript function on ajax load event
$('.variations_form').each(function(){ $(this).wc_variation_form(); });
And your are ready to go.
- This reply was modified 5 years, 2 months ago by getwooplugins.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Multiple Images per VariationOur variation plugin loads it’s own gallery. To have vertical gallery you have to use premium version.
Thank you
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Cannot see selectionOpen ticket on our site. We need to run deep inspection. Did you check plugin conflict making disabled all plugins except WooCommerce and Variation Swatches
Thank You
Add the following code in functions.php
remove_filter( ‘woocommerce_product_data_tabs’, ‘add_wvs_pro_preview_tab’ );
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Color – default image changeForum: Plugins
In reply to: [Variation Swatches for WooCommerce] id of non-object@themecat007,
Remove the plugin and try to install manually downloading this one: https://www.ads-software.com/plugins/woo-variation-swatches/
Thank You
- This reply was modified 5 years, 2 months ago by getwooplugins.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Variations as sinlge productsDo you mean to have something like this: https://www.youtube.com/watch?v=r1DIlBSJI5o
Thank you
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Swipe touch on mobile deviceI think, it’s working for me: https://www.loom.com/share/745f151ea25e41f2bed182c33a41a9a6
Thank You
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Plugin update is not happeningCould you download the plugin from the wp .org and try to upload the latest plugin from the FTP.
Thank You
Forum: Plugins
In reply to: [Additional Variation Images Gallery for WooCommerce] Disable zoomingForum: Plugins
In reply to: [Additional Variation Images Gallery for WooCommerce] Thumbnails srcAdd the following filter inside functions.php and adjust your width and height according to your need.
add_filter( ‘woocommerce_get_image_size_gallery_thumbnail’, function( $size ) {
return array(
‘width’ => 150,
‘height’ => 150,
‘crop’ => 0,
);
} );Thank You
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Shop images are misaligned after pluginHI @akoato,
We are sorry for the inconvenience.
We have nothing to control gallery from our swatches plugin.
Could disable all plugins except WooCommerce and our Variation Swatches for WooCommerce? And check is it happening or not.
If it’s fixed, try to activate each plugin one by one. And find out which plugin is creating the issue.
Thank You