wpforce
Forum Replies Created
-
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] [select color not displaying product]It is the default behavior of WooCommerce. You have to select both Color and Size to get pictures.
This plugin just converts the default dropdown to a beautiful Color/Button/Image etc. Swatches.
I hope this information will help.
Can you please temporarily deactivate the Swatches plugin to check if it happens without this plugin or not?
This plugin doesn’t deal with that part you mentioned in the screenshot.
From your details, you want a conditional variation display feature.
Unfortunately, this feature is not currently available.
BTW, you can try the Product Add-ons plugin.
I hope this information will help.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] REST Api IssueThis plugin just converts the default dropdown to color/image/button etc. swatches.
Please open a thread at the WooCommerce forum regarding this issue.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] How to make like thisAs far as I know, this feature is not currently available.
As far as I know, in the advanced version, you can display swatches on the archive page. By clicking swatches on the archive/shop page, the “Select Options” button will be changed to “Add To Cart”
I hope this information will help.
Thanks
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Variation attribute duplicatedCan you please share an exact link to check?
Thanks
You can try the below code inside your child theme’s functions.php file. Set product IDs inside
target array
and also read the comments [inside the code block] carefully to achieve what you wanted.add_filter( 'default_wvs_variation_attribute_options_html', function ( $default ) { if ( is_product() ) { // Add the product IDs inside target array. For example 59,13. Note: add a comma after each product ID $target = [59,13]; if(in_array( get_the_ID(), $target) ){ return true; } return $default; } } );
Then let me know if it helps.
Forum: Plugins
In reply to: [WooCommerce] when you buy they don’t send emailWill you please check if you have Email notifications enabled for the desired order status!
Best Regards