I am explaining here a way to remove the estimated tax block seen in the summary section of cart page Create a file checkout_cart_index.xml at the location app/design/frontend/Dw/green/Magento_Checkout/layout/ (Dw/green is a custom theme) Copy the content as seen below in the layout file Also in case you want to remove the heading as well than […]
Category: Magento
Everything related to Magento eCommerce
Get payment method of quote in Magento
Hello All, Please check the below script that will help you find the payment method information set in Magento quote
Coupon code generation using Magento
Hello All, I am writing here a script that will help you generate random coupon codes using Magento’s existing modules Hope this is helpful
Get child product in Magento
Hello All, I am writing here a script for getting all the child products of the required parent product id Hope this is useful
MS SQL with Magento
Here is a way to connect mssql database using Magento’s inbuilt models. Hope this is helpful
Email with attachment in Magento
I had a specific requirement to generate a CSV file and send the same as an attachment in a mail, without saving it at any physical location. I am listing here the way to do it. For further read Mail in Magento Add attachment to order email in Magento
cURL request in Magento
cURL request in Magento Most of the time there is a need to call 3rd party APIs from Magento. We use cURL functions for the same, now here is an interesting part, Magento has wrapper functions for the same in its own library. This make it easy for calling the 3rd party API url’s. Code […]
RSS Feed Reader Magento Extension
Hello All, Update [28-May-2019] : I have developed an extension for Magento 2 platform, check it out Dw Rss Feed Reader for Magento 2 I have developed an extension and posted on Magento Connect for free. DW Reader extension will enable the shop owner to display RSS Feed on any static/dynamic page of the shop […]
OrderProfit Magento Extension
Hello All, I have developed an extension and I am posting here for free. An extension that will add a ‘Profit’ column in Orders grid showing profit per order. Configuration setting are provided for disabling the column and editing the column header. Compatibility : Tested with Magento Community Edition 1.5, 1.6, 1.6.1, 1.6.2.0, 1.7 and […]
Date Time Input Magento
Hello, There are times when backend developer needs to create a form in admin end and we need to have an input box which accepts data and time. In this post I have explained the code for doing this. Open your form file, will be in app\code\local\[NameSpace]\[Module]\Block\Adminhtml\[BlockName]\Edit\Tab\Form.php There is a function _prepareForm() inside it. Add […]