“Estimated delivery dates” feature not available to Variable products
-
I’ve enabled the feature and it working fine, but not showing up in variable products
Hello,
Please disable any plugins not directly related to our theme and provide us with your admin access details. We will log in to your dashboard and investigate the issue. Please ensure that you only keep the following plugins that are necessary for our theme to work correctly:
– WoodMart core
– WooCommerce
– Elementor/WPBakery Page Builder
Thank you in advance.
We don’t see any WooCommerce variations created for this product, so it looks like it is out of stock. https://monosnap.com/file/wsHemi4oHkGgvJ4l0gBFQxItUa1DX9
You need to either create variations or make the parent product in stock https://monosnap.com/file/oYhkPI0VJWuxxOKwUueXu2GCSWnz5D
I looked from my end, this seems to be conflict with WP Sheet Editor, because the variations created by regular way shows the Estimated delivery dates normally than created with WP Sheet Editor, Can you recommend a bulk editor plugin compatible with woodmart theme swatches ?
Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_filter(
'woodmart_est_del_ignore',
function ( $ignore, $product ) {
return ! $product->exists() || $product->is_type( 'external' ) || $product->is_virtual();
},
10,
2
);
Kind Regards
Exactly what i’m looking for, worked like Sharm.
Thanks alot
You are welcome. Feel free to contact us if you have any further questions.
The topic ‘“Estimated delivery dates” feature not available to Variable products’ is closed to new replies.