• Hi people I’ve recently installed WP-Page Navi but I still got iNove default and ugly navigation bar. How to activate it? Where and what code should I change?

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to add the following code to the bottom of your index.php file:

    <?php if(function_exists('wp_pagenavi')) { ?>
    	<div class="page-navi">
    		<?php wp_pagenavi(); ?>
    	</div>
    <?php endif; ?>

    This code is normally added at the bottom of the page just before the call:

    <?php get_sidebar(); ?>

    You now have to style the class page-navi to suit your requirements.

    Thread Starter aki9

    (@aki9)

    I’ve did it and then I can only acess homepage. Error with all others. And there isn’t the

    <?php get_sidebar(); ?

    on inove index.php

    Thread Starter aki9

    (@aki9)

    Can someone help?

    I believe Page Navi has updated their plugin and its installation process since your last post. Check out their installation instructions here: https://www.ads-software.com/extend/plugins/wp-pagenavi/installation/

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘WP-Page Navi – How to activate?’ is closed to new replies.