Notifications
Clear all
Topic starter
Hello.
I try to hide the number of ads in empty subcategories (do not show zero numbers).
Any ideas how to do that ?
I use Osclass 3.9 and Osclasswizards "legacy" theme.
Thank you
Posted : January 31, 2021 13:57
Hi.
The code you need to change is in theme's function.php.
Search for
<span>(<?php echo osc_category_total_items() ; ?>)</span>
and replace it with
<span><?php if(osc_category_total_items()>0){ echo '('.osc_category_total_items().')';} ?></span>
You can also totally remove the counters and/or hide zero subcategories. The code appears twice in the functions.php, i hope you know a little bit your way around php and php files.
Posted : January 31, 2021 14:35
ChrisJ reacted
Topic starter
For some reason i didn't get an email for your reply here. So i just saw the suggestion.
Thank you.
Posted : February 2, 2021 09:27