
Tagged: portfolio grid, side navigation
-
AuthorPosts
-
March 4, 2025 at 11:49 am #1478567
HI
I just noticed the side navigation on my portfolios is missing.
I’m not sure we’re going to use it but it was there before – I don’t have any css hiding it and can’t find any other settings.
Can you see what’s going on?
Thanks
NancyMarch 5, 2025 at 5:12 am #1478613Hey Munford,
Thank you for the inquiry.
Are you referring to the post navigation? Please note that this navigation will not display if there are fullwidth elements such as a Slider or Color Section in the page. To change this, you can add this code in the functions.php file:
function avf_post_nav_settings_mod($settings){ $settings['is_fullwidth'] = false; $settings['skip_output'] = false; return $settings; } add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 10, 1);
Best regards,
IsmaelMarch 5, 2025 at 10:24 am #1478659OK but that actually made all my pages have post navigation, not just the portfolio items.
March 6, 2025 at 5:16 am #1478711Hi,
We adjusted the filter a bit. Please try it again:
function avf_post_nav_settings_mod($settings) { if (is_singular('portfolio')) { $settings['is_fullwidth'] = false; $settings['skip_output'] = false; } return $settings; } add_filter('avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1);
Best regards,
IsmaelMarch 17, 2025 at 1:13 pm #1479532that isn’t working for me.
I now added this code to hide the side navigation that DOES show up in a popup from a link in my footer “TILMELD DIG NYHEDSBREV” but the portfolio side navigation was not showing before I did that./*hide post side nav for footer link*/ #top button.mfp-arrow { display: none; }
I tried adding this to hide the post nav but that didn’t work either:
function no_post_nav($entries) { $entries = array(); return $entries; } add_filter('avia_post_nav_entries','no_post_nav');
March 18, 2025 at 2:11 am #1479589Hi,
We added the filter again in the functions.php file.
Please make sure to purge the cache before testing.
Best regards,
IsmaelMarch 20, 2025 at 6:41 pm #1479811This reply has been marked as private.March 21, 2025 at 5:33 am #1479834 -
AuthorPosts
- The topic ‘portfolio grid side navigation’ is closed to new replies.