Viewing 1 reply thread
You must be logged in to reply to this topic.
Hello! I use tower theme version 1.3.3.
I want to use categories in a portfolio. I set category to work in my portfolio.
In the site displayed not the caterogy title, but category URL. Screenshot: https://prnt.sc/as7pyh
Why does that happen? I need to update theme?
Hello,
You do need to update theme as the latest version has some changes made and the latest Visual Composer plugin included. it is compatible with wordpress 4.5.
But what you’re asking here has nothing to do with theme update and is actually not an issue but part of theme default style.
That is not the url, but the slug of portfolio categories.
If you want to change it to the name instead, then go to file include/view/portfolio/loop-grid.php and find this line:
foreach ($item_categories as $cat)
{
$sort_classes .= $cat->slug.' ';
}
replace with these:
foreach ($item_categories as $cat)
{
$sort_classes .= $cat->name.' ';
}
Save file and refresh.
Let us know.
Best regards!
You must be logged in to reply to this topic.