Blog includes 2 categories. When viewing a blog articles, there are arrows on the left and right that let you view the previous/next article. They include ALL articles, even those in other categories. It delivers a confusing user experience this way. How can it be set to only scroll through articles in the same blog category?
Hey m!
For displaying only in same category see here, https://kriesi.at/support/topic/avia-post-nav-with-the-same-category/#post-184637.
Let me know if that was helpful for you.
Cheers!
Basilis
Code on mentioned link is not working with Enfold 3.4.5.
Please try with:
//Show prev/next post from same category
add_filter( 'avia_post_nav_settings', 'use_same_category_filter' );
function use_same_category_filter( $settings ) {
$settings['same_category'] = true;
return $settings;
}