Osclass forums
Support forums => Tips, tricks, and tutorials => Topic started by: zombieek on March 22, 2017, 02:57:38 pm
-
Hi all, Please I need advice on how to add statistics on the index, which will be announced today, the number of newly added ads. Thanks in advance for your help
Sample: "Today posted ads: 256"
-
you can use the helpers https://doc.osclass.org/HItems.php#.27Helpers_for_item_counts
-
Thanks, but can you please advise where to insert it, or how to set it to work?
-
Usually you add this in the file footer.php that you can find in your theme folder
<p>Total posted ads: <?php echo osc_total_active_items() ; ?></p>
<p>Today posted ads: <?php echo osc_total_active_items_today(); ?></p>
-
thanks a lot