Home / Admin / Change Vendor Pending Message
Duplicate Snippet

Embed Snippet on Your Site

Change Vendor Pending Message

Changes the message shown to vendors when their account is pending.

Code Preview
php
<?php
function kjm_change_vendor_pending_message() {
	return 'My new message!';
}
add_action( 'fes_application_pending_message', 'kjm_change_vendor_pending_message' );

Comments

Add a Comment