Hi Mike,
Thanks for your help, the body tag was being included in the header.php but after some googling, the following code fixed the problem
if( ! is_page_template('single-job_listing.php') )
{
add_filter( 'body_class', 'job_body_class' );
}
function job_body_class( $classes ) {
if( ! is_page_template() )
$classes[] = 'job_listing';
return $classes;
}
EDIT: Actually this just added About to all pages… still googling 🙂
Thanks Mike, Maybe we are stripping it somewhere Do you know if VC does this as my page shows:
<body class=" wpb-js-composer js-comp-ver-4.3.3 vc_responsive">
Appreciate this is our application issue and not the plugin in that case.