Reply To: How to only display specific portfolio categories?


imaginem
Support

@rspohn

You’ll need to create Parent worktype categories. You can generate portfolio items in sub categories by selecting the parent work type. This way you can isolate worktype categories.

The related portfolio items are displayed using the displayed portfolio items work type.

Do you mean to display items from “clients 1” category only no matter which portfolio item is displayed?

You’ll need to edit single-mtheme_portfolio.php

Line 135 needs to be set to the ID of your preferred category ID. You can set the other two to null by giving it a “” null quote.

eg.

$first_tag = "21";
$second_tag = "";
$third_tag = "";

Thanks