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!
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
Perfect! Thank you so much.