I add at the top of the any items of my portfolio the “Advanced LayerSlider” and set the header trasparency. Now the next e previous button of the portfolio items is hidden why?
Thanks in advance
Hey ttnka!
May we have a link to the page in question so we can take a closer look?
Cheers!
Dake
On private content U can found info for connect to my site.
Thanks in advance
Hi!
The arrows will be disabled if a fullwidth slider is present on the page. Please add following code to Functions.php file in Appearance > Editor to override 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;
}
Best regards,
Yigit