• I am using the Third Style 1.1.1 theme and have cleaned up most of my open issues and am not just working on my fine tuning of the design.

    What I would like to do is to remove the next/previous functionality. With the use of sidebars and widgets, this functionality is not needed on my site.

    If you could provide me with what file I need to update and where in the file i need to make the changes.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter dfgutzman

    (@dfgutzman)

    OK, I have figured out how to remove the next previous from my category archive page. But when I am on an actual post, they next/previous still remain.

    I was able to fix the next/previous for the category archive in this code on the loop.php file:

    <?php /* Display navigation to next/previous pages when applicable */ ?>
    <?php if ( $wp_query->max_num_pages > 1 ) : ?>
    <div id=”nav-above” class=”navigation”>
    <div class=”nav-previous”><?php next_posts_link( __( ‘<span class=”meta-nav”>←</span> Older posts’, ‘thirdstyle’ ) ); ?></div>
    <div class=”nav-next”><?php previous_posts_link( __( ‘Newer posts <span class=”meta-nav”>→</span>’, ‘thirdstyle’ ) ); ?></div>
    </div><!– #nav-above –>
    <?php endif; ?>

    Thread Starter dfgutzman

    (@dfgutzman)

    Anyone able to lok at this? I have been able to remove the next/previous functionality on categories/archive.

    However, on the actual posts, I am still seeing the nex/previous show up both at the top and bottom of my posts. It also has a left and right arrow. How do I get rid of this. I hae searched all over the place.

    Remember, this is the Third Style them.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Third Style 1.1.1 Remove Next/Previous Functionality’ is closed to new replies.