Osclasswizards them...
 
Notifications
Clear all

[Solved] Osclasswizards theme, how to remove ads numbers from empty subcategories

3 Posts
2 Users
1 Reactions
228 Views
(@chrisj)
Posts: 2
New Member
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
Editor
(@editor)
Posts: 553
Honorable Member Admin
 

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
(@chrisj)
Posts: 2
New Member
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