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

    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é

    • This topic was modified 10 years, 11 months ago by baiker.
    #201820

    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

    #201973

    Hi Ismael
    Problem solved with your code! Great! Thank you very much.

    René

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Still got problems with avia sliders in portfolio items’ is closed to new replies.