Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #835674

    Hi guys,

    Can you help me solve and fix this?

    1. The side arrows to go to another project appear on most of my projects, but on some it doesn’t appear at all.

    For example on this page: http://www.ccyran.com/projects/rga-stories/
    It doesn’t show.

    But it does here: http://www.ccyran.com/projects/advertising-age/

    I want it to show on every project page. And to show on the left and right sides the next or previous project

    2. Is there CSS to have this only appear when a viewer is at the bottom of the page?

    3. It looks like the left arrow fields are off. The text and image thumbnail isn’t centered. Screenshot: https://ibb.co/kLy1nF

    Thanks!
    Chris

    • This topic was modified 7 years, 3 months ago by ccyran.
    #837870

    Hey ccyran,

    Thank you for coming back.

    Sorry for the late reply due to summer holidays.

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Günter

    #838011

    Hi Gunter,

    No worries. Login info in private content!

    #838037

    Hi,
    I was able to fix it by adding this code to the end of your 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;
    }

    Enfold deactivates the post navigation on pages with fullwidth sliders or some elements to avoid that the slider buttons overlap the post navigation and vice versa.
    When editing functions.php you should use the child theme, Read about it & Get it here Your next update will lose this mod.

    Best regards,
    Mike

    #838047

    Man you are on a roll haha. I seriously appreciate this help! Okay im looking into moving this into a child theme now.

    Last question, is there CSS to change how the images are shown in it? So it doesn’t round the thumbnails?

    Thanks!

    • This reply was modified 7 years, 3 months ago by ccyran.
    #838071

    Hi,
    Try:

    .avia-post-nav .entry-image img {
        border-radius: 0px!important; 

    Best regards,
    Mike

    #838073

    thanks!

    #838077

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Post arrows don't show on all pages’ is closed to new replies.