Page 1 of 1

Display Numbers - only show articles?

Posted: 21 Apr 2012, 10:39
by jsymedia
I would like my main component area to only display the article amount numbers and not the sub-category amounts in the "Display Numbers in Category(ies) View".

I do not have any sub-categories so it's displaying like "0/5" on every category.

http://mylifeneeds.com/article-directory.html

Do you know where I can remove that code and how?

Thank you for your help. :)

Re: Display Numbers - only show articles?

Posted: 26 Apr 2012, 18:58
by dip
in components/com_phocadocumentation/views/sections/tmpl/default.php
find

Code: Select all

if ($this->tmpl['displaynumdocsecsheader'] == 1) {
			echo ' <small>('.$value->numcat.'/' . $numDoc .')</small>';
		}
and change to

Code: Select all

if ($this->tmpl['displaynumdocsecsheader'] == 1) {
			echo ' <small>('. $numDoc .')</small>';
		}
(delete ".$value->numcat.'/'")

view result