
Originally Posted by
raunharman
Currently the Attributes are showing below the Add to Cart box. The customer sometimes does not come to see that portion where the attributes are defined.
Can we shift the Attributes abouve the Add to cart Box.

Open your includes/templates/override/templates/tpl_product_info_display.php file and move the block of code wherever you like:
Code:
<!--bof Attributes Module -->
<?php
if ($pr_attr->fields['total'] > 0) {
?>
<?php
/**
* display the product atributes
*/
require($template->get_template_dir('/tpl_modules_attributes.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_attributes.php'); ?>
<?php
}
?>
<!--eof Attributes Module -->
Thanks,
Anne