#4148

Tu Tran
Moderator

Hi,

Sorry, I have just got your idea now. To solve this issue, please go to the file app\design\frontend\default\sns_nino\template\catalog\product\view.phtml, find and cut the code below:


<?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;?>

then paste into right after the code:


<?php elseif (!$_product->isSaleable()): ?>
     <?php echo $this->getChildHtml('addto') ?>
<?php endif; ?>

Thanks,