Job Submit field placeholder text
-
I’m in the need to change the placeholder text for the Location field.
It currently says “Any Location”.
I wasn’t sure if I could use this type of method:
add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields' ); function custom_submit_job_form_fields( $fields ) { $fields['job']['job_type']['required'] = false; return $fields; }
But target the placeholder?
Anyone’s help and guidance on this would be much appreciated.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Job Submit field placeholder text’ is closed to new replies.