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

    Hello,

    I’m wondering how to make appear the next/prev navigation on portfolio with full slider like in http://kriesi.at/themes/enfold/portfolio-item/portfolio-big/
    On the previous version I had (1.9.1) it was working fine but seems to get lost with the lastest update on Oct 20 (as well as several CSS customization I made in child theme that was not working anymore). The website is under construction but I can provide you with user/password if needed.

    Thank you in advance.
    Regards,

    Anne-Sophie

    Edit: I found out it diseappers when you add the Fullwidth Easy Slider in the advanced layout. After the next save, the prev/next doesn’t show, and if you erase the sllider, it’s back. Is it possible there is a bug there?

    • This topic was modified 10 years, 5 months ago by asdevargas.
    #183123

    Hey asdevargas!

    Can you post the link to your website? You should have enough content under slider and prev/next buttons should appear when you scroll down.

    Regards,
    Yigit

    #183151
    This reply has been marked as private.
    #183966

    Hi!

    It’s not a bug but an intended behavior: https://kriesi.at/support/topic/portfolio-ui-elements-not-appearing/
    However the next theme version will include a filter which helps the user to bypass the fullwidth slider check. With the next update you don’t need to hack the theme files but you can use following code (add it to functions.php) to bypass the check

    
    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!
    Peter

    #184198

    Hello Peter,

    Thank you but the solution you gave me is not working (I pasted the code in function.php of the child theme and nothing). So I followed the given solution in the link. However, in a previous version of the theme, the prev/next nav was going under o disappearing with full width slider http://devargas.com.es/temp/PreNextNav.jpg (this is a screenshot from version 1.9.1 I still have installed for testing purpose), I mean, it was working just fine, without overlaping with full slider; it seems that feature went missing with some updates… I tried to change z-index values but nothing. Do you know how to fix it? It’s actually quite annoying to have the prev/next nav overlaping with the picture… :S

    Regards,
    Anne-Sophie

    #184206

    Hi!

    The code I posted above doesn’t work yet – that’s why I said it will work with the next update.You can try change the z-index of the post nav links with following css code

    
    #top .avia-post-nav {
    z-index: 200;
    }
    

    Regards,
    Peter

    #184231

    Hi,

    Sorry I didn’t get it, I thought this would be solved in the next update but in the meantime this code would made the trick: I keep it in mind then.

    As for the z-index values, I’ve already tried changing it. Actually, if you set it to 2 it’s exactly the same as 200, but if you change it to 1 it disappears –both from above the slider and the rest of the page. I’ve also tried to apply a higher a z-index to .avia-slideshow, also to .av_slideshow_full.avia-slideshow and some others but it remains the same…
    Do you have any other suggestion?
    Thank you in advance.

    Anne-Sophie

    #185090

    Hey!

    I marked this thread for Kriesi. I couldn’t get the z-index value to work too but I’m not sure why.

    Regards,
    Peter

    #185122

    Hi! Thank you, looking forward.
    Regards,

    Anne-Sophie

    #187742

    Hello, do you have any news about this topic…? Looking forward. Thank you!

    #189180

    Hey!

    Unfortunately not. It can take Kriesi a good bit of time to get to his queue depending on where he is in the development cycle of the current push.

    Best regards,
    Devin

    #189992

    Hi Devin, thank you.
    Do you have any date for a new update to be released?

    Regards,
    Anne-Sophie

    #190696

    No, not at the moment. There are some big issues getting tackled with the update and last I talked to Kriesi about it he was still in the middle of sorting some of them out.

    #191283

    Hi Devin, thank you, I understand. However, please take it in account for further theme updates, it was a really useful feature!! One more question, as I’m not pretty sure after reading your answer: is it OK to update WP from 3.7 to 3.7.1 or the issues you are talking about are related to the latest version of WP?

    Regards,
    Anne-Sophie

    #191790

    Hi!

    You can update to 3.7.1 – I’m not aware of any incompatibility issues.

    Best regards,
    Peter

    #191835

    Ok, thank you Peter!

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Prev/Next navigation in portfolio is missing’ is closed to new replies.