hide number of files in the category list

Phoca Download - download manager
tintilld
Phoca Newbie
Phoca Newbie
Posts: 6
Joined: 19 Apr 2020, 21:15

hide number of files in the category list

Post by tintilld »

Hi,
I Use Phoca Download with Joomla to give a library of files on my website.
I use the display "List of Files (Category View).
I can see :
- Category A (0)
- Category B (1)
- Category C (0)

But I don't want to display the number (0) or (1).
How can I Do?

Thanks by advance for your help 

Tintilld.

Tags:
christine
Phoca Hero
Phoca Hero
Posts: 2732
Joined: 28 Nov 2010, 17:20

Re: hide number of files in the category list

Post by christine »

Hi,

try this code:

Code: Select all

.pd-title small {
display:none;  
}
Into your e.g. custom.css. Depends which template you are using.

Kind regards
Christine
tintilld
Phoca Newbie
Phoca Newbie
Posts: 6
Joined: 19 Apr 2020, 21:15

Re: hide number of files in the category list

Post by tintilld »

Many thanks Christine for your quickly help but I couldn't resolve my problem.

I didn't find à custom.css file in my Joomla.
I use the Protostar template

then I tried add the code à the end of the /templates/protostar/template.css file but I have the same result. :(

Maybe do I create the custom.css file before?

Sorry for my level but i'm a beginner in Joomla and web developpment.

Tintilld.
christine
Phoca Hero
Phoca Hero
Posts: 2732
Joined: 28 Nov 2010, 17:20

Re: hide number of files in the category list

Post by christine »

Hi Tintilld,

either above Code or try with this (depends which view). To see your URL live, would be easier.

Code: Select all

.pd-subcategory small {
display:none; 
 }
Maybe do I create the custom.css file before?
For Protostar it is: user.css (to create before).

Kind regards
Christine
tintilld
Phoca Newbie
Phoca Newbie
Posts: 6
Joined: 19 Apr 2020, 21:15

Re: hide number of files in the category list

Post by tintilld »

many many thanks Christine !!!

I create user.css and add the code bellow and it's OK

Code: Select all

.pd-subcategory small {
display:none; 
 }
.pd-title small {
display:none;  
}
A big thanks.

Kind Regards

Tintilld
Post Reply