Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Mike Jolley

    (@mikejolley)

    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?

    Thread Starter bruno.carvalho

    (@brunocarvalho)

    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/

    Plugin Author Mike Jolley

    (@mikejolley)

    See if you can find it in ‘views/single’ – maybe this theme has a sub folder?

    Is this a premium theme?

    Thread Starter bruno.carvalho

    (@brunocarvalho)

    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!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Description is not showing’ is closed to new replies.