Tagged: Avia Slider, navigation, portfolio items
Since I updated on WP 3.7.1 (de) and enfold 2.4.2, I got problems with navigation between portfolio sites. On portfolio pages with a advanced slider on top, followed by a color section with content, the side navigation on the portfolio site is not shown, so I can not navigate between the portfolio items. Without slider, it works.
See closed topic https://kriesi.at/support/topic/problems-with-avia-sliders-in-portfolio-items/#post-195717
I changed to enfold 2.5 as recommended by Peter, but unfortunately, the problem still exists. What can I do?
Thanks, René
Hey baiker!
Did you update to 2.5 yet? Add this on functions.php:
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;
}
Remove browser cache then reload the page.
Regards,
Ismael
Hi Ismael
Problem solved with your code! Great! Thank you very much.
René