Remove Photo and Video fields from
-
I would like to remove the Photo and Video fields from Submit Resume form and have tried the following codes below but doesn’t seem to work. Any help with what I’m missing?
……………………………………….
add_filter( ‘submit_resume_form_fields’, ‘remove_submit_resume_form_fields’ );function remove_submit_resume_form_fields( $fields ) {
// Unset any of the fields you’d like to remove – copy and repeat as needed
// Removing the Photo field
unset( $fields[‘resume_fields’][‘photo’] );// Removing the Video field
unset( $fields[‘resume_fields’][‘video’] );// And return the modified fields
return $fields;}
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Remove Photo and Video fields from’ is closed to new replies.