Single Job Post
-
How do I change the order of the information on the Single Job Post page
I need it to be job information then company then job description
I have tried this in functions.php
add_action( 'job_bm_after_single_job', 'customise_job_page'); function customise_job_page() { remove_action('job_bm_single_job_main', 'job_bm_single_job_main_job_info'); remove_action('job_bm_single_job_main', 'job_bm_template_single_job_description'); add_action('job_bm_single_job_main', 'job_bm_template_single_job_description', 20); add_action('job_bm_single_job_main', 'job_bm_single_job_main_job_info', 30 ); }
It is going into
customise_job_page but it isn’t making any difference. The delete and add actions aren’t working
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Single Job Post’ is closed to new replies.