i am trying to check whether module1 is called in virtue mart default page.
if module1 is being called i want to show product description for that module. when i tried to add description in default page it shows description in all virtue mart products modules.
i am stuck at this stage of my project where i am not able to catch module1 call in virtue mart page.
how can i check for this module1 call?
here is code for description:
// 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
}