the_content() needs to be in a loop. Did you add that or was it already in the theme? If it was already there, thats completely wrong and the theme author should be notified.
Do you have a link to the page itself as well?
I’ve added. The original theme does not have the line the_content ();
This is the link for a test job: http://oxygenium.com.br/demos/mall/emprego/oxygenium-itatibasp-freelance-vaga-1/
See if you can find it in ‘views/single’ – maybe this theme has a sub folder?
Is this a premium theme?
It’s a premium theme.
I put the file single-job_listing.php in views/single.
I put the loop below and apparently is working.
<?php
if ( have_posts() ) while ( have_posts() ) : the_post();
$setings = (miss_get_setting('disable_meta_options')) ? miss_get_setting('disable_meta_options') : array();
$without_date = ( in_array('date_meta', $setings) ) ? ' without_date' : '';
$more_clases = $without_date;
?>
<?php endwhile; ?>
Thanks for all help!