1. This doesn't happen in the stock version of the template, I need to see a link.
2. includes/templates/template_default/templates/tpl_modules_main_product_image.php
once you change it, then move it to includes/templates/apple_zen/templates/ so that you're changes will still be there after an upgrade
3. So you want to not have the product name in bold? You want to remove the product name for every product?
4. includes/templates/template_default/templates/tpl_product_info_display.php
That file is nicely segmented into chunks. First you'll need to grab the description chunk, and move the right after this:
<!--eof Product details list -->
Then move the price chunk right after the description chunk.
Then if you want the manufactured by to show up before the model portion, re-arrange this section:
<ul id="productDetailsList">
<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
</ul>




Reply With Quote
