Home Forums WoodMart support forum “Estimated delivery dates” feature not available to Variable products

“Estimated delivery dates” feature not available to Variable products

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #616939

    cgd.mohamed
    Participant

    I’ve enabled the feature and it working fine, but not showing up in variable products

    #616945

    Artem Temos
    Keymaster

    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.

    #616946

    cgd.mohamed
    Participant

    Here you

    #617013

    Artem Temos
    Keymaster

    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

    #617022

    cgd.mohamed
    Participant

    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 ?

    #617056

    Artem Temos
    Keymaster

    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

    #617179

    cgd.mohamed
    Participant

    Exactly what i’m looking for, worked like Sharm.

    Thanks alot

    #617225

    Artem Temos
    Keymaster

    You are welcome. Feel free to contact us if you have any further questions.

Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)

The topic ‘“Estimated delivery dates” feature not available to Variable products’ is closed to new replies.