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.
Display Numbers - only show articles?
-
- Phoca Member
- Posts: 10
- Joined: 16 Apr 2012, 21:32
-
- Phoca Member
- Posts: 43
- Joined: 09 Apr 2012, 16:33
- Location: Russia
Re: Display Numbers - only show articles?
in components/com_phocadocumentation/views/sections/tmpl/default.php
find
and change to
(delete ".$value->numcat.'/'")
view result
find
Code: Select all
if ($this->tmpl['displaynumdocsecsheader'] == 1) {
echo ' <small>('.$value->numcat.'/' . $numDoc .')</small>';
}
Code: Select all
if ($this->tmpl['displaynumdocsecsheader'] == 1) {
echo ' <small>('. $numDoc .')</small>';
}
view result