Search This Blog

Tuesday, 30 October 2012

Magento: Product image Deep Zoom Extension

JQuery library for Magento

 jQuery is a cross-browser JavaScript library designed to simplify the client-side scripting of HTML

http://www.magentocommerce.com/magento-connect/utilities/developer-tools/mygento-jquery-library-and-powerful-plugins.html

Friday, 26 October 2012

Magento Custom Admin Theme

http://inchoo.net/ecommerce/magento/custom-admin-theme-in-magento/

Just create new theme and place modified files and new files only instead of all the stuff from default theme.

Monday, 22 October 2012

Magento: Programtically Cancel the coupon code on the shopping cart

$quote = Mage::getSingleton('checkout/session')->getQuote();
$oldCouponCode = $quote->getCouponCode();
if (strlen($oldCouponCode)) {
    $quote->setCouponCode('')->collectTotals()->save();
}