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

    In admin I have hide some products so products are hided from everywhere on website
    BUT in the right and left arrow on product page we can access to those products!

    I unchecked the horizontal nav but it steel display.
    How to hide it? It’s very urgent!!!

    #734868

    finded with:
    #top .avia-post-nav { display: none; }

    #734876

    Hi!

    Glad you figured it out!
    For future reference, if you would like to hide them completely, not only using CSS, you can add following code to Functions.php file in Appearance > Editor

    add_filter('avia_post_nav_entries','avia_remove_post_nav', 10, 1);
    function avia_remove_post_nav()
    {
    return false;
    }

    Cheers!
    Yigit

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