Joomla Cache Duplicate Virtuemart products – This is very common bug when you are using virtuemart and joomla system cache simultaneously . So here is the simple fix
Go to this location components/com_virtuemart/themes/default/templates/browse/included/browse_layouttable.tpl.php and browse_notables.tpl.php
echo $this->fetch_cache( 'browse/'.$templatefile .'.php' );
and change it with
echo $this->fetch( 'browse/'.$templatefile .'.php' );
Enjoy Joomla Coding 🙂
Be the first to comment.