How to remove About field in vendor profile

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 WCFM – Ultimate How to remove About field in vendor profile

Viewing 2 reply threads
  • Author
    Posts
    • #125365
      Henriette
      Participant

      Hi,

      I would like to remove the About field in Vendor profile.
      Could you please provide me a snippet for that purpose?

      Thank you.

      Attachments:
      You must be logged in to view attached files.
    • #125369

      Hello,

      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/

      add_filter('wcfm_profile_fields_about',function($fields,$vendor_id) {	
      	unset($fields['about']);	
      	return $fields;
      },10,2);

      Thanks.

    • #125371
      Henriette
      Participant

      Works perfect.

      Thank you!

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