Hi
Ok, this surprised me a little bit, but looks like this template is build the oposit way than any other before ;/ In older templates short description was hidden in product pages, but full description was visible. Here it's the other way around. So I edited file /html/com_virtuemart/productdetails/default.php and replaced code:
- Code: Select all
// Product Description
if (!empty($this->product->product_s_desc)) :
?>
<p>
<?php echo nl2br($this->product->product_s_desc); ?>
</p>
<?php
endif; // Product Description END
with
- Code: Select all
// Product Description
if (!empty($this->product->product_desc)) :
?>
<p>
<?php echo nl2br($this->product->product_desc); ?>
</p>
<?php
endif; // Product Description END