Hi,
You use Child Theme and customize the following files:
- job_form.php (wp-content/themes/noo_jobmonster/layouts/forms/)
http://prntscr.com/q8lfby
- company_profile.php (wp-content/themes/noo_jobmonster/layouts/company/)
https://prnt.sc/q8lfue
____________________________________________
- Change the text "Describe your company and vacancy": you put this function to the functions.php file of Child Theme and edit the text.
function jm_get_page_post_job_post_step(){
$title = __('Describe your company and vacancy','noo');
$link_args = array('action'=>'post_job');
$job_id = isset($_GET['job_id']) ? absint($_GET['job_id']) : 0;
if($job_id) {
$link_args['job_id'] = $job_id;
}
$link = esc_url(add_query_arg($link_args));
return apply_filters( 'jm_page_post_job_post_step', array(
'actions' => array( 'post_job' ),
'title' => $title,
'link' => $link
) );
}
- Hide the text "Professional Summary": you can add these lines to style.css of Child Theme:
label[for="desc"] {
display: none;
}
Best regards,
tb.