Multi Vendor

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 9 reply threads
  • Author
    Posts
    • #96627
      id.manage
      Participant

      Hi, may I ask you if I can hide more offers on product page while using single product multi vendor? Thanks

    • #96699
      Molay Das
      Keymaster

      Hi,
      Please add the below given code in your theme’s functions.php file. It’ll remove the “More Offers” tab from product page.
      add_filter( ‘woocommerce_product_tabs’, ‘custom_remove_product_tabs’, 9999 );
      function custom_remove_product_tabs( $tabs ) {
      unset( $tabs[‘wcfm_product_multivendor_tab’] );
      return $tabs;
      }

      Thanks,

    • #96758
      id.manage
      Participant

      Hey, MolayDas. Thank you, just tried, but the code doesn’t work.

    • #96772
      Molay Das
      Keymaster

      Hi,
      That code should work but still can you share me your website login credentials so that I can check.
      Please send your login credentials as private message over here.

      Thanks,

    • #96948
      id.manage
      Participant
      This reply has been marked as private.
    • #97207
      Molay Das
      Keymaster

      Hi,
      Your website login credentials are not working, please check it once and do share us the correct one.

      Thanks,

    • #97328
      id.manage
      Participant
      This reply has been marked as private.
    • #97608
      Molay Das
      Keymaster

      Hi,
      Please check the login details for yourself once because its still not working.

      Thanks,

    • #97639
      id.manage
      Participant
      This reply has been marked as private.
      • #97872
        Molay Das
        Keymaster

        Hi,
        I’ve corrected the issue in your site, you can check it, its working now.
        The given code was correct but there was a quotation issue.

        Corrected code without quotation issue given below:

        add_filter( 'woocommerce_product_tabs', 'custom_remove_product_tabs', 9999 );
        function custom_remove_product_tabs( $tabs ) {
        unset( $tabs['wcfm_product_multivendor_tab'] );
        return $tabs;
        }

        Thanks,

    • #97898
      id.manage
      Participant

      It works now. Thank you so much. You are a star!

Viewing 9 reply threads
  • The topic ‘Multi Vendor’ is closed to new replies.