Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1284552

    Hi! I use fullwidth easy slider to create easy dividers. But when I use them in a blog post page, the blog post navigation disappears. How can I fix this to keep both? Or would there be an easy way to insert my png image divider in the buttom part of the image section at the top (now it’s just under it)? Thanks!

    #1286839

    Hi! I created an other ticket to know how to insert my png in the top section. But I still need to understand why the full width slider (line blue and yellow in my post) makes the post navigation disappear? Thanks!

    #1286842

    Hi,

    Please add following code to Functions.php file in Appearance > Editor

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

    Post nav is disabled on portfolio items that has fullwidth elements by default :)

    Best regards,
    Yigit

    #1286897

    Hi Yigit!

    I added the code to my functions.php child theme, but I still can’t see the post navigation on my article page.

    #1286952

    Hi,

    Did you clear the cache a few times over?

    Best regards,
    Jordan Shannon

    #1287293

    Yes I cleared the cache, I tried with a private window and looked on mobile devices and can’t see it. Can you see it on your side?

    #1287959

    Hi metamorfic,

    Best regards,
    Victoria

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