• Resolved jgodfrey99

    (@jgodfrey99)


    I have setup the plugin and it appears to be working. Feeds are coming in from a handful of sources, the content is displaying with the short code, and everything seems okay. However, whenever you click on the buttons/links for the pagination – that is to have it show page 2 of the RSS feed links – it never works. The URL appears to be correct, but the page just reloads back to the first page.

    I am not using any of the premium addons for this plugin at this time.

    Any ideas?

    • This topic was modified 7 years ago by jgodfrey99.
Viewing 1 replies (of 1 total)
  • renzms

    (@renzms)

    Hi @jgodfrey99!

    One of the reasons that this may be happening is canonical redirects. A possible solution to solve this problem can be to add the following filter to your theme’s functions.php file:

    add_filter( 'redirect_canonical','custom_disable_redirect_canonical' );
    function custom_disable_redirect_canonical( $redirect_url ){
        if ( is_singular('post') ) $redirect_url = false;
        return $redirect_url;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Pagination Broken’ is closed to new replies.