How to delete "Details" of Products Descriptinon & "Products tags" of Products tab?

How to delete "Details" of Products Descriptinon & "Products tags" of Products tab of each products page, please?

3 answers

Profile photo of thangnn1510 0.00 $tone June 7, 2011
Public

Please remove these codes in view.phtml of app\design\frontend\default\jm_tyrolitetemplate\c atalog\product

Code:

<?php if ($_description = $this->getChildHtml('description')):?>
    		<li><a href="#ja-tab-decription"><?php echo $this->__('Product Description') ?></a></li>
    	<?php endif; ?>

Code:

<?php if($product_additional_data = $this->getChildHtml('product_additional_data')): ?>
       	<li><a href="#ja-tabitem-tags"><?php echo $this->__('Product Tags') ?></a></li>
      <?php endif; ?>

Code:

<?php if ( $_description ):?>
	    	<div id="ja-tab-decription">
	            <div class="collateral-box">
	                <?php echo $_description ?>
	            </div>
				</div>
				<?php endif;?>

Code:

<?php if( $product_additional_data ): ?>
				<div id="ja-tabitem-tags">
					<?php echo $product_additional_data; ?>
				</div>
				<?php endif;?>
#1

This question is now closed

Written By

Comments