Hello. How can I completely remove the left and right arrows which appear on the sides of every post?
I managed to hide them using some CSS I found on here .#top .avia-post-nav { display: none; }
But all this does is hide them, not remove the feature. The thumbnails which would usually appear when you mouse over the arrows are still loading on every page. How do I turn this feature off entirely so that i’m not wasting bandwidth loading these thumbnails?
Thanks.
Hey Neal!
Please try the following instead:
#top .avia-post-nav, #top .avia-post-prev, #top .with-image {
display: none !important;
}
If it doesn’t work, please provide us with a link to the site in question and we’ll have a closer look.
Regards,
Rikard
Hey!
Can you please flush browser cache and refresh your page a few times? I cannot see post navigation on your example page :)
Cheers!
Yigit
Hi. Yes, you cannot see it, but it is still loading the images in the background. If you look at the browser debugger (or whatever it’s called! :P ) you will see that it loads the two images I listed above, they’re just not visible, or displayed.
I already tried deleting the cache. Thanks!
Hey!
Please add following code to Functions.php file in Appearance > Editor
function no_post_nav($entries)
{
$entries = array();
return $entries;
}
add_filter('avia_post_nav_entries','no_post_nav');
Best regards,
Yigit
Yes! Thank you :)