Thanks that could work - but know have another issue
I have 2 forms on separate pages now and the title of the form needs changing - you gave me this code below
<div> add_filter( 'rwmb_frontend_post_title', function( $field ) {
if ( is_page( "Green Care Form" ) ) {
$field['required'] = true;
$field['name'] = 'Name of Green Care organisation';
return $field;
}
} ); </div>
but the other form needs it's title adding/changing as well
I tried to add another code snippets with the following code:
<div>
add_filter( 'rwmb_frontend_post_title', function( $field ) {
if ( is_page( "Green Care Sub Site Form" ) ) {
$field['required'] = true;
$field['name'] = 'Name of Green Care Sub Site';
return $field;
}
} ); </div>
but if I do this then the title on the first form disappears - How can I alter both form titles please
regards
Paul