• Resolved Twister1611

    (@twister1611)


    I’m a newbie. Don’t know where to modify my pagination code. As you can see my previous button text is not spelled correctly and when I’m on page 4 and click previous button I get 404 error. How to fix it?

    Plus I got problem in my featured images in my blog page. They seem broken or something. I tried checking the codes but don’t know where to find those. And when I’m on the category page featured images will show up. What’s wrong?

    I thought there might be something wrong with the code. I’ve read same issue as mine but don’t know how to execute those solutions. Hope anyone could give me advice with these issues I’m having with. Simple and easy to understand solutions. Thanks…

    Here’s the link:
    https://www.ukimnek.com/wn/blog/page/4/

    Twister1611

    [ No bumping please. ]

Viewing 1 replies (of 1 total)
  • Thread Starter Twister1611

    (@twister1611)

    Just figured it out.

    I changed this:
    if( $paged > 2 && $paged > $range+1 && $show_items < $pages ) echo "<a href='".get_pagenum_link(1).'">?</a>’;
    By Increasing the number into much higher value.
    if( $paged > 1000 && $paged > $range+1 && $show_items < $pages ) echo "<a href='".get_pagenum_link(1).'">?</a>’;

    My previous button was fixed by adding this sign ‘&’ behind lsaquo.
    if( $paged > 1 && $show_items < $pages ) echo "<a href='".get_pagenum_link($paged-1)."'>&lsaquo</a>";

    Changed this code:
    <img src="<?php echo frontline_get_image("w=700&h=288&amp"); ?>" alt="" />
    With this:
    <img src="<?php echo frontline_get_image($img,700,288); ?>" alt="" />

    Have a great day ahead!

Viewing 1 replies (of 1 total)
  • The topic ‘Blog Page Pagination Issue’ is closed to new replies.