Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #984186

    Hi. In my https://www.italnoleggio.it/auto/noleggio-lungo-termine-fiat-doblo/ I have the arrows in order to browse products at the very right and left of the product page. Because the navigation seems to ramdom there’s a way to disable it o to force manually to next and previous prodcut?
    Thanks,
    Gianluca from Italy

    #984504

    Hey sitibus,

    Thank you for using Enfold.

    Did you apply multiple categories to the posts? If there is only one category for each item, use this filter in the functions.php file to fetch the next or previous item from the same category.

    add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings) {
         $settings['same_category'] = true;
         return $settings;
    }
    

    If you want to disable it, go to the Enfold > Blog Layout panel and turn on the “Disable the post navigation” option.

    Best regards,
    Ismael

    #984526

    Hi thank you for your answer but the problem is for the navigation of the woocommerce products, not for the posts.
    In the blog layout panel post navigation is already been disabled

    #984705

    Hi,

    Are you referring to the navigations on both edge of the screen? This css code should remove those navigations.

    #top .avia-post-nav {
        display: none !important;
    }

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.