Jump to content

traffic light module


Recommended Posts

Hello to everyone...

I don't know if this is the right place where to post this, anyway i just have a question...

Does anybody know if is there any component or module that display a traffic-light which it can be used to show how many items are left (red if they are finished, yellow if they are finishing and green if there are many) and can be put anywhere?? ...

i don't know how and where to look for that...

thank you a lot, I.

Link to comment
Share on other sites

that will be very easy to do, not necessary a module I think you can make it yourself.
by use current stock information to display different light.


{if $product->quantity> 10}
<img src="/img/green-light.gif">
{else}
{if $product->quantity >=1}
<img src="/img/yellow-light.gif">
{else}
<img src="/img/red-light.gif">
{/if}
{/if}

Link to comment
Share on other sites

×
×
  • Create New...