VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: gba on March 06, 2015, 11:37:38 AM

Title: [solved] Order status: images instead of texts
Post by: gba on March 06, 2015, 11:37:38 AM
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
Title: Re: Order status: images instead of texts
Post by: GJC Web Design on March 07, 2015, 01:39:10 AM
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
Title: Re: Order status: images instead of texts
Post by: gba on March 10, 2015, 18:42:31 PM
Hi!

Thank you for your hint.
Sometimes you don't see the obvious ...  :-\ :-[ :)

Best regards,
Gerald
Title: Re: Order status: images instead of texts
Post by: Milbo on March 12, 2015, 10:44:20 AM
oh it is not so obvious, but a nice quickndirty idea.