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

    Hi!

    I have portfolio item pages that I would like to be able to navigate between using the left and right navigation arrows. These are not showing up and I’m wondering if it’s due to the way the pages are designed – I have a full width easy slider at the top of the page. Is this clobbering the navigation arrows? And if so, is there a remedy?

    Thanks!

    #434957

    Hey Keith!

    Thank you for using Enfold.

    The arrows will be disabled if a fullwidth slider is present on the page. Add this in the functions.php file to enable it back:

    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;
    }

    Regards,
    Ismael

    #436300

    Thanks Ismael, this worked perfectly.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Navigation between portfolio items with full width slider’ is closed to new replies.