Hi,
I have remove or comment out the category at virtuemart frontpage at file “shopIndex.tpl.php” (public_html/yourstoredirectory/components/com_virtuemart/themes/default/templates/common)
From:
<?php
defined( ‘vmToolTipCalled’) or define(‘vmToolTipCalled’, 1);
echo $vendor_store_desc.”<br />”;
echo “<br /><h4>”.$VM_LANG->_(‘PHPSHOP_CATEGORIES’).”</h4>”;
echo $categories; ?>
<div class=”vmRecent”>
<?php echo $recent_products; ?>
</div>
<?php
To:
<?php
defined( ‘vmToolTipCalled’) or define(‘vmToolTipCalled’, 1);
//echo $vendor_store_desc.”<br />”;
//echo “<br /><h4>”.$VM_LANG->_(‘PHPSHOP_CATEGORIES’).”</h4>”;
echo $categories; ?>
<div class=”vmRecent”>
<?php echo $recent_products; ?>
</div>
<?php
But the problem is the category still there:
http://lwcwaterfilter.com/index.php?option=com_virtuemart&Itemid=71
What should I do? Previously, once I comment out the codes, the category will be gone, but now still there. Anyone can help?