• Resolved imagisca

    (@imagisca)


    Hi,

    This plugin is amazing! Thank you for creating and supporting it. I am hoping you’re able to help with a relatively simple request that has proved to be complex.

    The careers page https://lpv.iux.mybluehost.me/careers/ lists all jobs. When a user clicks one of the jobs they’re taken to a page for the specific job https://lpv.iux.mybluehost.me/jobs/fire-systems-engineer/. I would like to include a link or button between header and job title that allows users to go back to the jobs page https://lpv.iux.mybluehost.me/careers/.

    I tried elementor header / footer builder but when I use the header option it replaces the header. I have used the before footer option and you can see a button saying back to careers near the bottom. I would like that button at the top.

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @imagisca,

    Thanks for writing to us.

    You can add custom button code before the job title by using the action hook “single_job_listing_meta_before”.

    We hope the solution provided above will resolve your issue.

    Regards,

    Thread Starter imagisca

    (@imagisca)

    That did the trick. Thank you for the quick reply. For others looking for a similar solution here is what I did.

    Added the following code to functions.php (ideally of a child theme)

    function jobs_back() {
    echo ‘Back to Careers‘;
    }
    add_action(‘single_job_listing_meta_before’, ‘jobs_back’);

    Modify the code in jobs_back function to whatever you would like to show on the page.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Back to Jobs buttom when viewing a specific job’ is closed to new replies.