Hi Thorsten,
I am using - phpMyFAQ 2.0.17
It is possible to add "Sub-Category" to my FAQ system without showing "0 Entries " beside ?
- See what I mean at the attached file:
Thanks
Add Sub-Category without showing "0 Entries"
Moderator: Thorsten
Add Sub-Category without showing "0 Entries"
You do not have the required permissions to view the files attached to this post.
Re: Add Sub-Category without showing "0 Entries"
Hi,
open inc/Category.php, goto line 628 and change
to
bye
Thorsten
open inc/Category.php, goto line 628 and change
Code: Select all
if (0 == $number[$parent] && 0 == $level) {
Code: Select all
if (0 == $number[$parent]) {
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Re: Add Sub-Category without showing "0 Entries"
Thank You ! 
