Tagged: categories, portfolio grid
This is the issue I’m having:
I have 6 parent portfolio categories. Each of those 6 parent categories has the child categories “Completed”, “Current”, and “Proposal”. When I go to select the categories to use for a portfolio grid, my options look like this:
Current
Current
Current
Current
Current
Current
Completed
Completed
Completed
Completed
Completed
Completed
Proposal
Proposal
Proposal
Proposal
Proposal
Proposal
Is there any way to add to or change the information that’s displayed? Maybe display the category slug in it’s place, or have it display similarly to the Portfolio Categories page in the admin panel? I’m going to be adding additional parent categories–and they will have the same three child categories as all of the others. It would be handy to be able to see what each category’s parent category is without having to include it in the category name. Thanks for your help!
Hi,
Open /enfold/config-templatebuilder/avia-template-builder/php/html-helper.class.php and look for line 943:
$title = $entry->name;
Replace it by:
$title = $entry->slug;
Regards,
Josue