Greetings,
After hours searching the web, I still haven't found an answer to my problem.
I'm using the "Images & Detailed Information" style. However, I'd like to remove the category description and change the words "Number of Images" to simply "Amount". Does someone know where I can find the code to change this?
I'm using Phoca 3.2.6.
Thanks in advance,
TiemeUber
Phoca Gallery Displaying Style
-
lifeisshort
- Phoca Newbie

- Posts: 2
- Joined: 04 Sep 2013, 20:00
Re: Phoca Gallery Displaying Style
Hi,
If i understand correctly, do next:
To hide description text:
Edit:
public_html/components/com_phocagallery/views/category/tmpl/default.php
Comment or remove:
// Category Description
if (isset($this->category->description) && $this->category->description != '' ) {
echo '<div class="pg-cv-desc">'. JHTML::_('content.prepare', $this->category->description) .'</div>'. "\n";
}
To change Number of Images go to public_html/language/en-GB/en-GB.com_phocagallery.ini
If i understand correctly, do next:
To hide description text:
Edit:
public_html/components/com_phocagallery/views/category/tmpl/default.php
Comment or remove:
// Category Description
if (isset($this->category->description) && $this->category->description != '' ) {
echo '<div class="pg-cv-desc">'. JHTML::_('content.prepare', $this->category->description) .'</div>'. "\n";
}
To change Number of Images go to public_html/language/en-GB/en-GB.com_phocagallery.ini
-
TiemeUber
- Phoca Newbie

- Posts: 4
- Joined: 05 Sep 2013, 02:03
Re: Phoca Gallery Displaying Style
Thank u, it worked 