• Hii all,

    I have set number of post on my home page as 10. Now after crossing that limit i get a “Next Page” button, which i dont want..

    Is there any way to hide or remove that button.

    Thanks,

Viewing 1 replies (of 1 total)
  • Find this,

    /*  common : pagination
    /* ------------------------------------ */
    .pagination { margin-bottom: 15px; }
    .pagination a { font-size: 18px; font-weight: 600; }

    in your child themes css add the display: none; attribute so that it looks like this,

    /*  common : pagination
    /* ------------------------------------ */
    .pagination { display: none; margin-bottom: 15px; }
    .pagination a { font-size: 18px; font-weight: 600; }

    make sure you are using a child theme. Mark this thread resolved if this solves your problem. Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘How to get rid of the "Next Page" button’ is closed to new replies.