Viewing 1 reply thread
You must be logged in to reply to this topic.
hi
im trying to recreate this page from demo but couldnt manage to get it to be same.
what component did you used in this ? and i want to put a comma between categories
https://codeless.co/tower/default/works/overlay-style/4-columns/
Hello,
That’s a portfolio page. Please check a video tutorial here: https://youtu.be/AYTADwEdM_w
To add comas between categories you’ll need to edit theme files. The responsible file is tower\includes\view\portfolio\loop-grid.php and the block of code:
if(is_object($item_categories) || is_array($item_categories))
{
foreach ($item_categories as $cat)
{
$sort_classes .= $cat->slug.' ';
}
}
To add comas, just add a coma inside the ''
(space). Example:
$sort_classes .= $cat->slug.', ';
Best regards!
You must be logged in to reply to this topic.