Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #502658

    My fist question
    How remove the 2 arrows at the right and left side with the link to another article ?

    Your reponse
    Please add following code to Quick CSS in Enfold theme options under General Styling tab
    #top .avia-post-nav { display: none !important; }
    Can i have this 2 arrows but only bettween the same category of article ?
    Best regards,
    Yigit

    My new question:
    Can i have this 2 arrows but only bettween the same category of article ?

    Thany you
    Philippe

    #502674

    Hi PhilippeTe!

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

    add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings)
    {
    $settings['same_category'] = true;
    return $settings;
    }

    Regards,
    Yigit

    #502703

    It work !

    But non on the page with a “LayerSlider avancé”
    Why ?

    Thank you

    Best regard

    Philippe

    #502707

    Hi!

    Do you have any other posts in the same category?

    Regards,
    Yigit

    #502709

    Yes

    10 posts for this category

    Thanks

    Philippe

    #503393

    Hi!

    Do you mind creating a temporary admin login and posting it here privately?

    Cheers!
    Yigit

    #503427

    Done

    Thank you

    Philippe

    #503434

    The good link

    Philippe

    #504156

    Hey!

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

    Regards,
    Yigit

    #504173

    It s work !
    Thank you ++++
    Have a nice day
    I can now make a very nice website !

    Philippe

    #504520

    Hi,

    Great, glad we could help :-)

    Cheers!
    Rikard

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Arrow between articles’ is closed to new replies.