Hi
I’ve implemented WP JOB Manager plugin for the Enfold theme.
I emailed WP JOB MANAGER and they advised it to be a Theme issue?
When you view a single job post, it uses the page title bar that says LATEST NEWS
example here: http://unity.instantartwork.co.uk/job/trainee-engineer/
Is there anyway to amend this so it shows different text?
I don’t want it to clash with the other blog/news items.
Many thanks…
Hi getmebranded!
Thank you for using Enfold.
Please ask their support what is the name of the custom post type use for the plugin. Use the avf_title_args to change the title. Add this in the functions.php file:
add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
function fix_single_post_title($args,$id)
{
if ( is_singular('CUSTOM POST TYPE NAME HERE') ) {
$args['title'] = get_the_title($id);
}
return $args;
}
Cheers!
Ismael
Thank you Ismael…