Viewing 9 replies - 1 through 9 (of 9 total)
  • Thanks for applaud @vmansur. To stopping showing the vendor’s name from the product’s page and purchase mail, please follow this path: Wp-admin >> WooCommerce >> WCMp >> Frontend and make below mentioned changes:

      1. Uncheck the Reveal Vendor Name- 1
      2. Uncheck the Reveal Vendor Name- 2
      3. Then, Save Changes

    Hope this shared information will help you.

    [ Signature moderated ]

    Thread Starter vmansur

    (@vmansur)

    thanks for the reply,

    I’ve done that.
    But still there is a tab “Vendor” right after the product’s description, and when I click it, it shows the vendor name and “more products from <vendor name>”

    I must be missing something…

    @vmansur – You meant the Vendor tab, right? For that please place the below given code snippet in the theme’s function.php file.

    add_action('init', 'remove_vendor_tab');
    
    function remove_vendor_tab() {
       global $WCMp;
       remove_filter('woocommerce_product_tabs', array($WCMp->product,'product_vendor_tab'));
    }

    Hope this will help you.

    [ Signature moderated ]

    Thread Starter vmansur

    (@vmansur)

    precisely!

    it worked like a charm!
    thanks a lot!

    Best regards,

    Glad to know @vmansur. Let us know if you have any other query.

    [ Signature moderated ]

    is there any possibility to add this as an option in the future versions, as this needs to be updated everytime the theme is updated.

    Thanks

    Well, can’t assure but we will try to have this option in our future update.

    Regards

    Thread Starter vmansur

    (@vmansur)

    queeneve,

    try to make the changes on the functions.php on the child theme.
    I believe this will solve your problem.

    Regards

    Thanks @vmansur for stepping in and helping queeneve.

    Regards

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Remove Vendor Name on Product's Page’ is closed to new replies.