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

    hi – Sorry, I couldn’t find an answer to this on the forum. My portfolio pages aren’t displaying the next / previous linkage on either side of the browser screen. I don’t believe I’ve done anything to affect this. Can you help?

    Thank you!

    #685887

    Hey doug123,

    The post navigation will be disabled if there are full width elements on the page. We have added following code to functions.php file in Appearance > Editor to enable it

    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings)
    {
    $settings['is_fullwidth'] = false;
    return $settings;
    }

    Please review your website now

    Best regards,
    Yigit

    #685899

    Perfect! Thank you so much.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Portfolio pages not displaying previous / next links’ is closed to new replies.