Hi @abourne,
You’re totally right. To our knowledge, the submit button from BP Profile Search and its text is part of the template and cannot be changed. So, we’ve added a filter to allow user to edit it.
Simply paste the following snippet with Code Snippets (https://wordpress.org/plugins/code-snippets/):
function gwangi_custom_bps_form_home_submit_value( $value ) {
$value = 'Find My New Gym Partner';
return $value;
}
add_filter( 'gwangi_bps_form_home_submit_value', 'gwangi_custom_bps_form_home_submit_value' );
Of course, feel free to change the $value but don’t forget the single quotation marks.
It should do the trick. ?
Cheers,