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

    (@mikejolley)

    You can make a template file to control single job listings. https://wpjobmanager.com/document/dealing-troublesome-themes/#section-2

    Thread Starter cmeurer

    (@cmeurer)

    So here is the code for my full width page — do I have to change anything in it, other than changing the name to single-job_listing.php? I didn’t get what it meant by adding a valid loop…

    <?php
    /*
    Template Name: Full Width
    */
    ?><?php $t =& peTheme(); ?>
    <?php get_header(); ?>
    <?php get_template_part(“tagline”); ?>
    <?php $content =& $t->content; ?>

    <?php while ($content->looping()): ?>

    <div class=”row-fluid”>
    <div class=”span12″>
    <?php $content->content(); ?>
    </div>
    </div>
    <?php endwhile; ?>

    <?php get_footer(); ?>

    Also, do I move this new file into my theme folder or into my child theme folder?

    Thanks for all of your help!

    Thread Starter cmeurer

    (@cmeurer)

    Nevermind – I tried it and it seems to work!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove sidebar or change page template for job page’ is closed to new replies.