Hello,
I want to know how desactivate the lateral (left and right) navigation. (in portfolio)
Thank you
Hi Espotpublicitat!
Please see – http://kriesi.at/documentation/enfold/remove-post-navigation-for-a-post-type/
Cheers!
Yigit
Hello,
I have tried to add
<em>function no_post_nav($entries)
{
if(get_post_type() == 'portfolio') $entries = array();
return $entries;
}
add_filter('avia_post_nav_entries','no_post_nav');</em>
in functions.php locatend in /wp-content/themes/enfold/
but when I add code my web doesn’t work.
Thank you
Hey!
Please remove em tags. You can also add following code to Quick CSS in Enfold theme options under General Styling tab
#top .avia-post-nav { display: none; }
Regards,
Yigit
Solved!
Thank you!