• Resolved oscarbg

    (@oscarbg)


    Hi, the module add store catalogue is not working fine, it only works wiht single product multivendor module and this doesn’t work for me. I want when a seller add a product from other vendor, this product works independent from the main product. And on the results page, both products appear.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Keep active both modules – Add to Catalog and Single Product Multi vendor.

    Add this line to your site hence both products will work independently –

    add_filter( 'wcfm_is_allow_product_loop_duplicate_hide', '__return_false' );

    Add custom code(s) to your child theme’s functions.php
    In case you do not have child theme then add those using this plugin –?https://www.ads-software.com/plugins/code-snippets/

    Thread Starter oscarbg

    (@oscarbg)

    Awesome! But in single product page it still appeares “more offers”, how can I remove “more offers”. Thanks a lot.

    Plugin Author WC Lovers

    (@wclovers)

    Please add this snippet to your site –

    add_filter( 'woocommerce_product_tabs', function( $tabs ) {
    	if( isset( $tabs['wcfm_product_multivendor_tab'] ) ) unset( $tabs['wcfm_product_multivendor_tab'] );
    	return $tabs;
    }, 250 );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add to store catalogue not working’ is closed to new replies.