How to add Pagination in the presentation page like this?

  • Author
    Posts
  • #24758
    Foster Ho

    Hi all

    I am a beginner and face a problem that my page does not have pagination in the front page.

    Could any expert teach me how to add the button of “More Posts” at the bottom of the page or simply add “1 , 2 , 3 … 10” ?

    For example: http://www.lifewithduke.com/

    #24759
    Foster Ho

    my page is http://www.myideahk.com

    Thanks!

    I struggle in the problem for weeks 🙁

    #26056
    Bartek

    Hi Foster Ho,

    Did You solved the problem somehow? I still don’t know how to do this :/

    #26082
    Walt

    Parabola Settings >> Graphics Settings >> Pagination >> Enable

    #26755
    t-berium

    Is enabled, but doesn’t work =/

    #28298
    Victor

    As long as I can say, the problem is that the presentation page is fixed and the number pagination is only for blog page, to say so.If you disallow presentation page, you will see the numbers in the bottom, although you would not have the slider and menus. I still cannot find a way to use presentation page (with the menus and the slider) in a way that older posts could be accessed. How could we make it possible?

    #29192
    madlopt

    I spent two days looking for how to fix this bug. And, in my opinion, i found how.
    In content/content-frontpage.php, find that code:

    				/* Start the Loop */
    				$the_query = new WP_Query(array('posts_per_page'=>$parabolas['parabola_frontpostscount']) );

    And change it to that:

    
    				/* Start the Loop */
    				$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    				$the_query = new WP_Query( array('posts_per_page'=>$parabolas['parabola_frontpostscount'], 'paged'=>$paged) );

    Don’t forget to uncomment that line:

    //if($parabola_pagination=="Enable") parabola_pagination(); else parabola_content_nav( 'nav-below' );

    It is a pity that such beautiful products are released with these ugly bugs that are not a programmer will not be able to fix it. I am convinced that if something you know how to best do it yourself!

    #29212
    madlopt

    And one thing.
    Don’t forget to set same number of posts per page in the /wp-admin/options-reading.php!

    #30659
    Fabionodariphoto.com

    Sorry but for me it doesn’t work… Im using a child theme. Do you think I should use a different code?

Viewing 9 posts - 1 through 9 (of 9 total)

The topic ‘How to add Pagination in the presentation page like this?’ is closed to new replies.