Viewing 6 replies - 1 through 6 (of 6 total)
  • If I’m correct, It need to go in your index.php and archive.php file.

    Thread Starter nanaejoy

    (@nanaejoy)

    Thanks, Danielx64
    Its not working.

    May sound silly, do you have the plugin turned on? Also did you read the readme file that comes with the plugin? The readme should tell you how to set it up with your theme.

    Thread Starter nanaejoy

    (@nanaejoy)

    I am already turned the plugin on…

    If you still haven’t found a solution, I wrote a post about how to set up wp-pagenavi with platform free edition. But it is in french, so here are the main steps:

    Be sure you have wp-pagenavi installed and turned on.

    Use a FTP client to edit this file of your wordpress installation: wp-content/themes/platform/sections/wp/section.pagination.php

    Look for the following lines:

    function section_template() { ?>
            <?php if(function_exists('wp_pagenavi') && show_posts_nav() && VPRO):?>
                <?php wp_pagenavi(); ?>
            <?php elseif (show_posts_nav()) : ?>
                <div class="page-nav-default fix">
                    <span class="previous-entries"><?php next_posts_link(__('&larr; Previous Entries','pagelines')) ?></span>
                    <span class="next-entries"><?php previous_posts_link(__('Next Entries &rarr;','pagelines')) ?></span>
                </div><!-- page nav -->
            <?php endif;?>
    
        <?php }

    and replace the first line by this one:

    <?php if(function_exists('wp_pagenavi') && show_posts_nav()):?>

    Hope it helps ??

    Thread Starter nanaejoy

    (@nanaejoy)

    thank you so much^^

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Does Platform theme(free edition) support wp-pagenavi plugin?’ is closed to new replies.