Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #194458

    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. What can I do?
    Here’s the site:

    Portfolio with slider: http://www.renebaiker.ch/portfolio-item/sold-your-soul/ (you’ll see no navigation left and right)

    Portfolio without slider: http://www.renebaiker.ch/portfolio-item/galerie-transit/ (you’ll see the navigation left and right)

    Any idea? What can I do? Thanks in advance
    René

    #195347

    Hi baiker!

    This was intentional by Kriesi if I remember correctly because otherwise the navigation items don’t show well with the overlap on the slideshow.

    I’ve tagged Peter on the topic as I’m not sure if its something that can be changed via function or if it needs to be done within the theme files.

    Best regards,
    Devin

    #195373

    Give this a try in your 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;
    }
    

    Just re-ran across it.

    #195461

    Hi Devin
    Thanks for the try. Unfortunately, it doesn’t work.
    Best regards,
    René

    #195717

    Hey!

    The code Devin posted above does not work yet because the filter is not included in Enfold 2.4. However the next update (2.5) will work with the code and you don’t need to hack the theme files over and over again. For a quick fix see https://kriesi.at/support/topic/portfolio-ui-elements-not-appearing/#post-182169

    Regards,
    Peter

    #197356

    Thanks Peter, I’m looking forward to Update 2.5! :)) By the way: cool theme!

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