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!!!
finded with:
#top .avia-post-nav { display: none; }
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