Hi Guys,
would anyone know how to move the "Be the first to review this product", "Email to a Friend", and "Sign up for price alert" to the bottom. (as illustrated on the JPG attached)
Thanks…
Allain
3 answers
To the bottom where, specifically?
Just after "Add to Wishlist"
Hi alagadic,
you can open the file of app\design\frontend\default\jm_nerostemplate\cata log\product\view.phtml there you move this snap of code
PHP Code:
<?php echo $this->getReviewsSummaryHtml($_product, false, true)?>
<?php if ($this->canEmailToFriend()): ?>
<p class="email-friend"><a href="<?php echo $this->helper('catalog/product')->getEmailToFriendUrl($_product) ?>"><?php echo $this->__('Email to a Friend') ?></a></p>
<?php endif; ?>
<?php echo $this->getChildHtml('alert_urls') ?>
To right above this
PHP Code:
<?php if ($_product->getShortDescription()):?>
<div class="short-description">
<h2><?php echo $this->__('Quick Overview') ?></h2>
<div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
</div>
<?php endif;?>
I hope this change helps !