Reputation: 3373
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
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