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

    Hi ,

    I have a custom post type and this is displayed using AVIA layout builder “PORTFOLIO GRID”

    When you click through to the POST single() the NEXT and PREV post are available as per the theme functionality.

    However as soon as you add a AVIA layout builder ADVANCED LAYER SLIDER to the post layout the NEXT and PREV post functionality is no longer available.

    I’d like to keep the NEXT and PREV posts

    Any chance there is a fix for this ?

    thanks!

    #288906

    Hey HuxburyQuinn!

    Thank you for using the theme.

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

    Cheers!
    Ismael

    #288916

    Hi Ismael

    Thanks Heaps !

    that did the trick!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Enfold Advanced Layer Slider kills Next and Prev post’ is closed to new replies.