Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #421214

    Pretty much a default install, no mods and yet no option to view previous or next portfolio entry:
    http://indlovu.org/africa/gallery-item/amazing-adventure/
    There are a few entries all tagged with the ‘central africa’ category so one should be able to move amongst them.

    Again then on my personal site, where I’d styled the UI elements nicely, all gone, ie:
    http://freelancewebdesign.co.za/work/natural-aesthetics-website-development/
    Surely this is a bug that has crept in after an update?

    #421585

    Hey fusion01!

    Can you send us a WordPress login so we can take a look at your settings?

    Also be sure to deactivate all plugins while testing.

    Best regards,
    Elliott

    #421807
    This reply has been marked as private.
    #422284

    Hey!

    Did you update the footer.php and header.php file in the child theme folder? Note that the post navigation is disabled when a full width slideshow is present on the page. Add this to the functions.php file to enable it back:

    /*filter projets - only show same category */
    add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings)
    {
    $settings['is_fullwidth'] = false;
    return $settings;
    }

    Regards,
    Ismael

    #422344
    This reply has been marked as private.
    #422565

    Hey!

    Please try copying the code from here – http://pastebin.com/nC9mTmvf
    It does work fine on my local installation

    Best regards,
    Yigit

    #422571

    That worked – thank you. Please DON’T CLOSE this thread though as I still need to test my own website which had nothing new added, always had a full-screen slider yet no UI). I’ll revert soonest.

    Thanks for the help thus far!!!

    #422574

    Hey!

    Sure, we will be waiting to hear from you :)

    Cheers!
    Yigit

    #422623

    Yeah tihs worked nicely, not sure why they disappeared though in the first place as my child theme functions.php file was empty. I think it was when I migrated to the child theme that I lost the custom ‘show UI’ code from within the main theme’s functions.php file.

    Can you confirm if one completely overwrites the other? Can they ‘share’ code, working together? Surely the case now or major Enfold functions wouldn’t work?

    #422627

    Hi!

    Not sure i understood the whole story of the issue but as long as you place your functions into functions.php file of your child theme and update only parent theme when there are new releases, your code should not disappear :)

    Regards,
    Yigit

    #423042

    Hi there, there is an issue that still remains, the UI elements disappear on mobile views for purely the one site, there are no custom rules within media queries (specifically mobile) to hide anything. Please do take a look:

    http://indlovu.org/africa/gallery-item/muddy-puddles/

    Please note I added the code supplied, yet I ALSO REMOVED the full screen slider component (used for a footer graphic – now in a section rather).

    Let me know soonest why they’ve gone!!!!
    Thanks in advance.

    • This reply was modified 9 years ago by fusion01. Reason: more descriptive
    #423044

    Hi!

    Which elements are disappearing? Can you please point them out?

    Cheers!
    Yigit

    #423051

    Thanks for swift response!

    Simple prev and next UI elements for portfolio items. In this case orange with big border radius and white arrow icon.

    #423055

    Hey!

    Please add following code to Quick CSS

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-post-nav {
      display: block !important;
    }}

    Cheers!
    Yigit

    #423062

    Yeah that fixed it – thanks. This just had to be a bug? Why did it occur – I didn’t change anything?! Anyway, hope it can be ‘fixed’ on an update?!

    #423064

    Hey!

    No it is not a bug. Post nav is hidden on mobile to save space, so most probably will not be enabled on mobile on upcoming updates. But you can keep the code in Quick CSS field to show them on mobile :)
    I am marking this thread as resolved. If you have any other questions or issues, please feel free to start a new one :)
    Have a nice weekend!

    Regards,
    Yigit

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Portfolio prev / next UI elements have disappeared’ is closed to new replies.