you would need to take this from tpl_modules_attributes.php :
Code:
<?php
for($i=0;$i<sizeof($options_name);$i++) {
?>
<-- leave this in but copy it.
Code:
<?php
if ($options_attributes_image[$i] != '') {
?>
<?php echo $options_attributes_image[$i]; ?>
<?php
}
?>
<br class="clearBoth" />
<-- cut this out and copy it
<-- leave this in but copy it.
now open tpl_product_info_display.php:
and insert between the <div tags>:
<div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div> (line 93
this code:
Code:
<?php
for($i=0;$i<sizeof($options_name);$i++) {
?><?php
if ($options_attributes_image[$i] != '') {
?>
<?php echo $options_attributes_image[$i]; ?>
<?php
}
?>
<br class="clearBoth" />
<?php
}
?>