Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #376242

    Hi all,

    this kind of navigation is nice.

    But, how can I display only portfolio items of the same (one) portfolio category?

    Thank you for help!

    Regards
    Peter

    #376510

    Hi Peter!

    Add this to the bottom of your 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,
    Elliott

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.