Page 1 of 1

Phoca Gallery Displaying Style

Posted: 05 Sep 2013, 02:08
by TiemeUber
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

Re: Phoca Gallery Displaying Style

Posted: 05 Sep 2013, 06:56
by lifeisshort
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

Re: Phoca Gallery Displaying Style

Posted: 10 Sep 2013, 02:18
by TiemeUber
Thank u, it worked ;)