Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #549920

    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

    #550020

    Hey ttnka!

    May we have a link to the page in question so we can take a closer look?

    Cheers!
    Dake

    #550257

    On private content U can found info for connect to my site.

    Thanks in advance

    #550478

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.