Posts

Showing posts with the label CMS

Joomla Virtuemart related customization

After setting up Virtuemart in Jooma, naturally the the search module in Joomla to return the results of the products available. But, the default search in Joomla will return all the pages in Joomla, instead of the list of products. To solve this, we can install search extensions (modules). There are a lot of free search modules out there, but I'm only going to introduce this particular AJAX search module called "VM Live Product Search". This module will return search results in a floating box for user to select from. [Module] VM Live Product Search Download: http://extensions.virtuemart.net/index.php?option=com_sobi2&sobi2Task=sobi2Details&catid=9&sobi2Id=92&Itemid=2# To edit the CSS, go to /public_html/shop/templates/default/css , and  /public_html/shop/modules/mod_vm_live_product/css . To Disable Auto Redirect (I'm still working on it... hehe ) "Recently Viewed Products" section To remove "Recently Viewed Products...

Virtuemart - Disable SKU

Been working on Joomla and VirtueMart lately :) On of the "customization" that people (client) always want is to disable or remove the SKU number from cart , or basket , or order details  page. Did a Google search a found out that there are quite a number of people out there offering solutions to remove SKU, but at a high price. Actually, you can hide the print of the SKU in the basket and order details  page. To disable SKU in "basket" , find the file at components/com_virtuemart/themes/default/templates/basket/basket_b2c.html.php Note: If you are using other customized theme, go to ../theme/<your-theme>/ instead. Inside that file around like 23 you will find the header of the column print _('PHPSHOP_CART_SKU') ?> You can comment that or delete Usually, to be safe, I'll just comment it ( /* .......*/ ). Then for the SKU code, around line 31, do the same thing, remove or comment it. To disable SKU in "account order details...