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.