Product Page Layout

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

Profile photo of Sherlock 0.00 $tone November 1, 2013
Public

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($_productfalsetrue)?>
            <?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($_productnl2br($_product->getShortDescription()), 'short_description'?></div>
                </div>
            <?php endif;?>


I hope this change helps !

#3

Please login or Register to Submit Answer

Written By

Comments