Quote Originally Posted by showroom View Post
this is the best templates that i found. I got some problem with the product page after i solved the additional images.

1. How can I align the addition images nicely ? Now the images is overlap each others.

2. Can I remove the 'larger image' wording ?

3. Can I replace the "SUNSET TO DIE FOR" in bold with Manufactured by "OBEY" ? and align it together with other info ?

4. How I can rearange the info by following sequence

Manufactured By
Model
Description
Price

Attached is the printed screen for your easy understanding.
Thank you in advance.

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>