Osclass forums

Support forums => Tips, tricks, and tutorials => Topic started by: zombieek on March 22, 2017, 02:57:38 pm

Title: adding new statistics posted ads PLS Help
Post 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"
Title: Re: adding new statistics posted ads PLS Help
Post by: cartagena68 on March 22, 2017, 05:31:40 pm
you can use the helpers https://doc.osclass.org/HItems.php#.27Helpers_for_item_counts
Title: Re: adding new statistics posted ads PLS Help
Post by: zombieek on March 22, 2017, 08:20:36 pm
Thanks, but can you please advise where to insert it, or how to set it to work?
Title: Re: adding new statistics posted ads PLS Help
Post by: cartagena68 on March 22, 2017, 09:15:17 pm
Usually you add this in the file footer.php that you can find in your theme folder

Code: [Select]
<p>Total posted ads: <?php echo osc_total_active_items() ;  ?></p>
<p>Today posted ads: <?php echo osc_total_active_items_today();  ?></p>
Title: Re: adding new statistics posted ads PLS Help
Post by: zombieek on March 25, 2017, 12:45:30 pm
thanks a lot