Hello, on katzcreativebooksandmedia.com we want to enable the prev and next arrows on the posts. When I enable under theme options it doesn’t seem to show on the single posts. Also we want those prev next nav for the posts to stay in the same taxonomy. Any suggestions?
Thanks so much.
Hey tonyiatridis,
Thank you for the inquiry.
The post navigation seems to be displaying correctly when checked. If you need the navigation to display only a single category, please add this filter to the functions.php file:
add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1);
function avf_post_nav_settings_mod($settings)
{
$settings['same_category'] = true;
return $settings;
}
Best regards,
Ismael
Thanks