Hi Anne
I thought i'd post this on here for anyone to use in the future as I was going to post it originally with a question asking for your assistance but I managed to find the answer myself however.
I wanted to move product attributes to above the 'add to cart button' so that customers pre selected the options if required before adding product to cart. The attributes were originally displaying at the bottom of the page.
I found this thread which helped- https://www.zen-cart.com/showthread....ve-Add-to-cart
In /includes/templates/westminster_new/templates/tpl_product_info_display.php
I moved
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 -->
To above
Code:
<!--bof Add to Cart Box -->
The code move works perfectly and displays great on both website and mobile views as this link on our site shows.
http://www.johnwoodsmotorcare.net/Ca...et-Replacement
Bookmarks