Tagged: navigation, Portfolio
-
AuthorPosts
-
July 8, 2015 at 11:55 am #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?
July 8, 2015 at 6:58 pm #470473Hey 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 10 years, 3 months ago by
Elliott.
July 9, 2015 at 4:02 pm #470968Great, 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 10 years, 3 months ago by
envis.
July 10, 2015 at 5:32 am #471269July 20, 2015 at 3:46 pm #475888Hi!
Your thread has been reopened as requested here: https://kriesi.at/support/topic/reopen-thread/
Regards,
DakeJuly 21, 2015 at 11:28 am #476386I 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???July 21, 2015 at 4:10 pm #476589Hey!
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 10 years, 3 months ago by
Elliott.
July 21, 2015 at 7:57 pm #476704Elliott,
I have tried it and it does not work.
Deleted all caching clientside and serverside caching is turned off.Any other suggestions?
Gerben
July 22, 2015 at 5:19 pm #477228Hi!
Sorry, try it now.
Cheers!
ElliottJuly 22, 2015 at 7:15 pm #477275Excellent, all in order now.
July 23, 2015 at 9:45 am #477590 -
This reply was modified 10 years, 3 months ago by
-
AuthorPosts
- The topic ‘Portfolio page navigation missing when using’ is closed to new replies.
