Hi there,
I need some help. I have to major categories in the portfolio. And i want to separate them in the front office.
-Graphic design
–cat1.1
–cat1.2
-photography
–cat2.1
–cat2.2
When i navigate in the graphic design category posts, is included the photography category posts in the previous and next.
For example i’m watching the cat1.2 and in the next project is presenting the cat2.2 and in the previous cat2.1.
How can i just present the main category posts.
Thanks
Hi TheBiZWeavers!
Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details here as a private reply.
Cheers!
Rikard
Hi!
Thank you for using Enfold.
Are you referring to the post navigation found on both end of the screens? Add this to the functions.php file:
add_filter( 'avia_post_nav_settings', 'enfold_customization_same_cat' );
function enfold_customization_same_cat( $s ) {
$s['same_category'] = true;
return $s;
}
Regards,
Ismael
Yes is exacly that.
Thanks ;)
Cheers
Jorge