Page 1 of 1
Categorie Name in Categories List
Posted: 24 Mar 2018, 20:10
by je1977
Hey,
i search for the Setting to Display the Categorie name in Categorie List
on this Picture i have solved it with the Categorie description.
Link to a Screenshoot
https://ibb.co/ggwtx7
Re: Categorie Name in Categories List
Posted: 25 Mar 2018, 15:11
by je1977
i think i can solved this with an override but i can`t find the right place....
[solved] Categorie Name in Categories List
Posted: 25 Mar 2018, 16:18
by je1977
ok i found the right place.
Create a Override for com_phocagallery >> categories
goto:
Code: Select all
yourTemplatePath/html/com_phocagallery\categories\default_obs_catimgdetail.php
and add the following Snippet in Line 73:
Code: Select all
echo '<tr><td>'.JText::_('Category') .': </td>'
.'<td>'.$this->categories[$i]->title.'</td></tr>'."\n";
The JText::_('.....') can be change in what ever you want to display.....
Re: Categorie Name in Categories List
Posted: 25 Mar 2018, 23:34
by Jan
Ok