Change Vendor Registration Form Heading Text

This might be something you could just use Loco Translate on, but here is the suggested way to rename the heading on the vendor registration form that gets added with the Vendor Registration shortcode that WCMp provides.

As always, this is either added to your Child Theme’s functions.php file, or consider using the My Custom Functions Pro plugin to manage and organize all your snippets.

add_filter('wcmp_vendor_registration_header_text', 'callback_wcmp_vendor_registration_header_text');

function callback_wcmp_vendor_registration_header_text($registration_form_text){
     $registration_form_text = 'CUSTOM TEXT';  // Add new text here
     return $registration_form_text;
} 

Tested and working on Woocommerce 4.6.1, WCMp 3.5.10

Is this no longer relevant or not working? Please let us know in the comments!

Comments on this post

Your email address will not be published. Required fields are marked *