How to change/remove the "brands" while adding products

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!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WC Marketplace How to change/remove the "brands" while adding products

Viewing 2 reply threads
  • Author
    Posts
    • #128023
      rohitxd
      Participant

      Hi I want to make this part invisible https://prnt.sc/scj8yr
      or else I want to change the label name of Brands https://prnt.sc/scj8yr

      Please respond how to do both, I would appreciate…
      Thanks

    • #128314

      Hello,

      To make this part invisible,
      add_filter('wcfm_is_allow_custom_taxonomy_pwb-brand', '__return_false');

      to change the label name of Brands https://prnt.sc/scj8yr-

      add_filter( 'wcfm_taxonomy_custom_label', function( $wcfm_taxonomy_custom_label ) {
      	if($wcfm_taxonomy_custom_label == 'Brands') {
      		$wcfm_taxonomy_custom_label = 'Rename Brands';
      	}
      	
      	return $wcfm_taxonomy_custom_label;
      },15);

      Add this code to your child theme’s functions.php

      In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/

      Thanks.

    • #140496
      djks74
      Participant

      Hi,
      I did add this filter to remove brands on the product edit page but Brand still appearing.
      Please advise! Thanks

      • #140522

        Hello,

        I did add this filter to remove brands on the product edit page but Brand still appearing.
        >>Can you share a vendor details with us.
        Which plugin/any custom code are you using to create a product brand?
        add_filter('wcfm_is_allow_custom_taxonomy_pwb-brand', '__return_false'); this code will applicable for https://wordpress.org/plugins/perfect-woocommerce-brands/

        Thanks.

Viewing 2 reply threads
  • You must be logged in to reply to this topic.