Pagination not working with NGFB plugin

Posted in: Newspaper
Post count: 24

Hello,

after the update of Newspaper theme to the latest version (4.6) and the update of the NGFB plugin (https://wordpress.org/plugins/nextgen-facebook/) to the latest version pagination on every page doesn’t work anymore. I’ve tested with all the plugins disabled except NGFB and it still doesn’t work. Tried reinstalling the plugin and the theme but it doesn’t do the trick.

Tested with Twenty Fourteen theme with plugins on/off (NGFB was always on) and pagination works as it should.

Site in question: matijaculjak.com

Any help would be appreciated.

Best regards,

Post count: 6600

Hi,

If the theme works without the NGFB plugin active means that the plugin conflicts with the theme’s files and causes this issues.
You can check the the NGFB plugin change log for security update and if no changes of this type were made revert back to the previous version and wait for plugins next version and maybe they will provide a fix for this.
You can also ask this on plugin’s support page: https://wordpress.org/support/plugin/nextgen-facebook
Hope this helps!

Thanks

Post count: 24

I am sorry for the late replay, but disabling the content filters as the plugin authors suggested didn’t do the trick. I have the latest version of the Newspaper theme, WordPress & NGFB plugin installed and it’s still not working.

Plugin authors said that problem is not in the plugin, but in the theme and I’m being sent back and forth between two parties.

Although I noticed that pagination works when I change the permalink structure from “Post name” to “Default”.

Post count: 24

Ok, I got the pagination working again. It seems that the problem is with the redirect_canonical() WP function.

I disabled canonical redirect for my front-page and the pagination works again as it should. The code I used:

add_filter( 'redirect_canonical','custom_disable_redirect_canonical' );
function custom_disable_redirect_canonical( $redirect_url ){
if ( is_front_page() ) $redirect_url = false;
return $redirect_url;
}

NOTE: Pagination wasn’t working only on front-page. On archive pages it worked just fine.

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.