I have a product with attributes. The issue I have the the product description is below the product and attributes, not above it.
Is this correct? How do I get the product description above the product and attributes?
I have a product with attributes. The issue I have the the product description is below the product and attributes, not above it.
Is this correct? How do I get the product description above the product and attributes?
If you take a look at your includes/templates/custom/template/tpl_product_info_display.php and find this code...
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<!--eof Product description -->
Take all of that code and place it just below this code (which is near the top of the file)...
<!--bof Product Name-->
<h1 id="productName" class="productGeneral"><?php echo $products_name; ?></h1>
<!--eof Product Name-->
It will place your product description just under the product name....then all of your attributes, product image, etc. will be below your product description.
You can move the Product Description code anywhere in this file and it will change its position on your page.
Hope I understood your question correctly to give you what you wanted.
Bookmarks