Hello all!
In FE order view I want to display the current order status of order items not as texts, but as images.
Did anyone make this in the past?
Or does anyone have an idea how to achieve that?
Thank you in advance for any useful hint!
Kind regards,
Gerald
name your images as the status text .. e.g Pending.png
then render the html
e.g. <img src="images/<?php echo JText::($this->order_status); ?>.png">
no idea what the actual vars are but you see the idea
Hi!
Thank you for your hint.
Sometimes you don't see the obvious ... :-\ :-[ :)
Best regards,
Gerald
oh it is not so obvious, but a nice quickndirty idea.