Show Order Quantity On Front-End

Hi! would anybody know how to show the amount of orders we received in total on the front page?

Thanks!

Hi! would anybody know how to show the amount of orders we received in total on the front page?

Thanks!

I can direct you to a newly developed add-on that will help you hide the number of orders you received... ;)

Amount being total number of orders?

HTML Smarty block:

We've an experienced supplier. We've processed {"SELECT count(*) FROM ?:orders"|db_get_field} orders to date so you can shop with confidence.

You could get fancier and store that in the user's session to prevent a table scan on every page load and various other performance improvement techniques. But this would be the quick and dirty way to get it. You can evolve it to suit your needs.

Thanks!