All my products have the same attributes.
Given this I think I should be able to play about with the layout by pulling each individual one and displaying it where I want on the page but I don't speak the language.
I am guessing that this bit in tpl_modules_attributes pulls the product's attribute list and displays it
Is this correct?<h4 class="optionName back"><?php echo $options_name[$i]; ?></h4>
<div class="back"><?php echo "\n" . $options_menu[$i]; ?></div>
So if I have a option name 'size' for example how to I retrieve it?
I optimistically tried this by adding it beneath to see if I got an extra attribute but it doesn't work
Thanks for any tips.<h4 class="optionName back"><?php echo $options_name[$size]; ?></h4>
<div class="back"><?php echo "\n" . $options_menu[$size]; ?></div>



