Hello,
I am having a similar problem as listed in this post: https://kriesi.at/support/topic/portfolio-category-linking/
Basically I want to use the portfolio previous and next arrows but I don’t want them to cross categories because it is confusing. Is this possible?
Thanks
Andrew
Hey awilson3rd!
Try to add this code to the theme functions.php file:
function category_specific_post_nav($settings)
{
if($settings['taxonomy'] == 'portfolio_entries') $settings['same_category'] = true;
return $settings;
}
add_filter('avia_post_nav_settings','category_specific_post_nav', 10);
Note that the code will only work with WP3.8+ and Enfold 2.6.+
Regards,
Peter
Thanks Peter,
Will give it a go.
Andrew