Page 1 of 1
I need to remove the file counter before entering the folder
Posted: 30 Nov 2017, 17:49
by lucas-chaves
I need to remove that number two that appears before entering the site folder, but I can not find where I do it, could anyone help me?
http://prntscr.com/hhbhh7
Re: I need to remove the file counter before entering the folder
Posted: 30 Nov 2017, 18:08
by christine
Hi,
Display Number of Files (Categories View) (Yes | No) Display or hide number of files (Categories View)
Display Number of Files (Categories View - Header) (Yes | No) Display or hide number of files (Categories View - Header)
etc. see here please:
https://www.phoca.cz/documents/17-phoca ... e-joomla-3
Kind regards, Christine
Re: I need to remove the file counter before entering the folder
Posted: 30 Nov 2017, 18:21
by lucas-chaves
christine wrote: ↑30 Nov 2017, 18:08
Hi,
Display Number of Files (Categories View) (Yes | No) Display or hide number of files (Categories View)
Display Number of Files (Categories View - Header) (Yes | No) Display or hide number of files (Categories View - Header)
etc. see here please:
https://www.phoca.cz/documents/17-phoca ... e-joomla-3
Kind regards, Christine
I tried this but the display remains the same
Re: I need to remove the file counter before entering the folder
Posted: 30 Nov 2017, 18:25
by christine
OK, than for category: Put following code at the end of your template.css and/or user.css ...
Code: Select all
.pd-subcategory small {
display:none;
}
Kind regards, Christine
Re: I need to remove the file counter before entering the folder
Posted: 30 Nov 2017, 18:40
by lucas-chaves
christine wrote: ↑30 Nov 2017, 18:25
OK, than for category: Put following code at the end of your template.css and/or user.css ...
Code: Select all
.pd-subcategory small {
display:none;
}
Kind regards, Christine
It worked perfectly now! thank you!