help
-
Hello, I’d like some help:
I am using the recommended Snippet to hide the company fields in the job registration form, but it does not work in any of the tests I did: theme / functions.php, theme-child / function.php and wp-job-mager- functions.php.
add_filter( ‘submit_job_form_fields’, ‘gma_custom_submit_job_form_fields’ );
function gma_custom_submit_job_form_fields( $fields ) {
unset($fields[‘company’][‘company_name’]);
unset($fields[‘company’][‘company_website’]);
unset($fields[‘company’][‘company_tagline’]);
unset($fields[‘company’][‘company_video’]);
unset($fields[‘company’][‘company_twitter’]);
unset($fields[‘company’][‘company_logo’]);return $fields;
}2- In the button of candidacy the vacancy, I would like to insert a fixed link to the insve of always register in the filling of the vacancy.
3- My translation into english appears like 100%, but when I try to change some expressions, it does not update.
Can you help me please.
- The topic ‘help’ is closed to new replies.