badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

"Previous" page button not working

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #42096

    When the “Previous” button is used on my main page ( http://www.lovelexingtonblog.com/ ) the page just reloads and doesn’t actually take the reader to the previous page. Please help. I haven’t changed any settings, but did delete a page from my blog.

    #42120

    Hi contactlovelexington,

    Go to Dashboard -> Settings -> Reading and choose your latest blog or use post page (your blog page). From onwards WordPress 4.4.1 post page as blog page will not work. Your settings must be below screenshot.
    http://awesomescreenshot.com/0555lhfk8c

    If you want to display blog full content template on other page then it works but to display on front page it will not work. By default you will have blog image large with read more button.

    To have blog full content you need code customization for it. Go to theme folder -> inc -> structure -> content-extension.php on line no 162 you will see this code
    <?php the_excerpt(); ?> remove this code and add below code
    <?php the_content(); ?> and also remove the line no 173

    <?php
    						echo '<a class="readmore" href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">'.__( 'Read more', 'interface' ).'</a>';
    						?>

    Better make a child theme and then customize the code. So that while updating to new version your customized code will not be lost. Otherwise you need to make same customization each and everytime you update to new version.

    Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.