RECENT BLOGS
Magento Customization: Magento Hosting Services
Magento Customization: Magento Hosting Services Magento offers an online merchants new flexibility as well as control over the functionality of their online-store. It’s self-generated admin interface characteristics, powerful marketing, catalog-management and SEO tools provides businesspersons the power to build [...]
Magento Customization: Security Tips For Your Magento Based Business Websites
Magento Customization: Security Tips For Your Magento Based Business Websites In an Online Business the Security is always a debatable part. In E-commerce market all sale transactions are done online. Most of the times, both the dealing parties are [...]
Magento Customization : Multiple Discounts in Magento
Magento Customization : Multiple Discounts in Magento Magento cart is a feature rich cart in e-commerce. But, by default Magento does not provide some features like “Multiple Discounts”. Magento cart supports to add such features in it with the [...]
Features of the Magento Platform
Features of the Magento Platform Magento E-Commerce platforms offer scalability, flexibility and functionalities for advancement of your online business. The platform contains attractive features that offer merchants total flexibility and power over the appearance, content and functionality of their [...]
Magento Customization : How to Use Observer to Modify Shipping Block on One Page Checkout in Magento
Magento Customization : How to Use Observer to Modify Shipping Block on One Page Checkout in Magento 1) Define Observer in Module Configuration xml: ModuleName/etc/config.xml Sample code.: <frontend> <events> <checkout_controller_onepage_save_shipping_method> <observers> <modulename_observer> <type>singleton</type> <class>modulename/observer</class> <method>checkout_controller_onepage_save_shipping_method</method> </modulename_observer> </observers> </checkout_controller_onepage_save_shipping_method> </events> </frontend> [...]
Magento Customization: How to set additional data in order email template
Magento Customization: How to set additional data in order email template 1) Place your html code in given file template file: app/locale/template/email/sales/order_new.html Example Code.: Ship Date: {{var delivery_date}} 2) Set your additional data in given class Mage_Sales_Model_Order(Note: As this [...]