Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #452236

    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.

    #452368

    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

    #452396
    This reply has been marked as private.
    #452695

    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

    #452704

    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!

    #452706

    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

    #452771

    Yes! Thank you :)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Remove Left and Right Post Navigation Function’ is closed to new replies.