• Hello! Your plugin is a wonderful solution for speeding up mobile sites. I am wondering if I can set it up to paginate only for mobile screens.
    I am using the Newspaper theme on a fully responsive site. It would be amazing if I could paginate the home page only when being accessed by a mobile screen device. Thank you!

    • This topic was modified 8 months, 1 week ago by 2bnews.
    • This topic was modified 8 months, 1 week ago by 2bnews.
Viewing 1 replies (of 1 total)
  • Plugin Author AlanP57

    (@alanp57)

    The only way to do this by adding some custom CSS code. If your theme has a section for custom CSS, you can add this code there:

    .wp-paginate { display: none; }

    @media screen and (max-width: 768px) {

    .wp-paginate { display: block; }

    }

    This code with hide the pagination links on desktop screens.

Viewing 1 replies (of 1 total)
  • The topic ‘Paginate Mobile Only?’ is closed to new replies.