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

    After adding an advanced layer slider to my portfolio page (to show one slide with overlays) with ALB, the navigation from one portfolio to another is missing. I mean the little grey boxes that have an arrow and image directing you to next portfolio item. How is this possible?

    #470473

    Hey envis!

    It’s because they overlap. You can add this to your child theme functions.php file if you want it to display anyway.

    add_filter( 'avia_post_nav_settings', 'enfold_customization_post_nav', 99 );
    function enfold_customization_post_nav( $settings ) {
    	$settings['is_fullwidth'] = false;
            return $settings;
    }

    Regards,
    Elliott

    • This reply was modified 9 years, 4 months ago by Elliott.
    #470968

    Great, works like a charm. Thank you very much! :)

    on second thought, I only wanted this to work on my portfolio and now it also works on my homepage scrolling through the pages.
    how can I only allow this on the portfolio pages???

    • This reply was modified 9 years, 4 months ago by envis.
    #471269

    Hi!

    Great, glad we could help :)

    Cheers!
    Rikard

    #475888

    Hi!

    Your thread has been reopened as requested here: https://kriesi.at/support/topic/reopen-thread/

    Regards,
    Dake

    #476386

    I only wanted this to work on my portfolio and now it also works on my homepage scrolling through the pages.
    how can I only allow this extra navigation on the portfolio pages???

    #476589

    Hey!

    For only portfolio posts try this out.

    add_filter( 'avia_post_nav_settings', 'enfold_customization_post_nav', 99 );
    function enfold_customization_post_nav( $settings ) {
            if ( get_post_type() == 'portfolio' ) {
    	     $settings['is_fullwidth'] = false;
            }
            return $settings;
    }

    Regards,
    Elliott

    • This reply was modified 9 years, 4 months ago by Elliott.
    #476704

    Elliott,

    I have tried it and it does not work.
    Deleted all caching clientside and serverside caching is turned off.

    Any other suggestions?

    Gerben

    #477228

    Hi!

    Sorry, try it now.

    Cheers!
    Elliott

    #477275

    Excellent, all in order now.

    #477590

    Hi!

    Great, glad you got it fixed :)

    Regards,
    Rikard

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Portfolio page navigation missing when using’ is closed to new replies.