Hi,
I am having trouble moving the description of each product in the product view.
I have located the php file that I thought would move the description
components/com_virtuemart/views/productdetails/tmpl/default.php
and located the lines
// Product Description
if (!empty($this->product->product_desc)) {
?>
<div class="product-description">
<?php /** @todo Test if content plugins modify the product description */ ?>
<span class="title"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE') ?></span>
<?php echo $this->product->product_desc; ?>
</div>
<?php
} // Product Description END
But when I try to move the code nothing on the page changes. I am using the bike template in the virtuemart settings but can't find the view files anywhere else other than in the components folder.
Could you please tell me what I am doing wrong.
Thanks in advance
Andy