Hi!
I have portfolio item pages that I would like to be able to navigate between using the left and right navigation arrows. These are not showing up and I’m wondering if it’s due to the way the pages are designed – I have a full width easy slider at the top of the page. Is this clobbering the navigation arrows? And if so, is there a remedy?
Thanks!
Hey Keith!
Thank you for using Enfold.
The arrows will be disabled if a fullwidth slider is present on the page. Add this in the functions.php file to enable it back:
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;
}
Regards,
Ismael
Thanks Ismael, this worked perfectly.