jackyesind
jackyesind

Reputation: 3373

Hide Latest product modules in virtue mart page details

I am using Joomla 1.5 and virtuemart 1.1.9 i have included the latest module in virtuemart. It displays the module in product details also i want to show only in virtuemart front page only

How would i hide these modules in product details page

div id="mainBlock">
    <jdoc:include type="modules" name="shopmodule" />                   
    <jdoc:include type="component" />

</div>

Please help me to get out from this

Upvotes: 0

Views: 423

Answers (1)

Riccardo Zorn
Riccardo Zorn

Reputation: 5615

Find out a parameter to identify this view, i.e. view = "product-detail", then

if (JRequest::getVar("view","")!=="product-details") {
   ?><jdoc:include type="modules" name="shopmodule" />     <?
}

Upvotes: 1

Related Questions