I have 1 product with 1 component and about 9 attributes....when they are in the cart i want the attributes to be displayed on sepperate lines as if they were sepperate items....now i managed this by inserting a <br> tag in my actinicorder.pm file here...
$Res{text} .= $pAttribute->[$::ABIDX_NAME] . ': ' . $pAttribute->[$::ABIDX_CHOICES]->[$nIndex] . $separator . ' <br>'; # Choice description
but in my reports, invoices etc...it shows the <br> tag as text and displays them all as 1 line...which looks ugly...
here are 2 images of my cart and my order screen.
http://s172585708.websitehome.co.uk/cart.gif
http://s172585708.websitehome.co.uk/contents.gif
plzz help me nice people.
$Res{text} .= $pAttribute->[$::ABIDX_NAME] . ': ' . $pAttribute->[$::ABIDX_CHOICES]->[$nIndex] . $separator . ' <br>'; # Choice description
but in my reports, invoices etc...it shows the <br> tag as text and displays them all as 1 line...which looks ugly...
here are 2 images of my cart and my order screen.
http://s172585708.websitehome.co.uk/cart.gif
http://s172585708.websitehome.co.uk/contents.gif
plzz help me nice people.
Comment