Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1472837

    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.

    #1472883

    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

    #1473050

    Thanks

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Prev next arrows on post with in same taxonomy’ is closed to new replies.