Magento:: free gift product module

app/code/community/Techievolve/Freeproduct/etc/config.xml app/code/community/Techievolve/Freeproduct/Exception/InvalidQuantity.php app/code/community/Techievolve/Freeproduct/Exception/ProductNotFound.php app/code/community/Techievolve/Freeproduct/Exception/ProductNotSalable.php app/code/community/Techievolve/Freeproduct/Helper/Data.php app/code/community/Techievolve/Freeproduct/Model/Consts.php app/code/community/Techievolve/Freeproduct/Model/Observer.php app/code/community/Techievolve/Freeproduct/sql/freeproduct_setup/mysql4-install-0.1.0.php app/etc/modules/Techievolve_Freeproduct.xml app/design/frontend/smartwave/porto/layout/freeproduct.xml app/design/frontend/smartwave/porto/template/freeproduct/checkout/cart/item/default.phtml

Magento:Get base image in upsell product on product view page

If you want to show the base image in upsell products, instead the small image Please Follow the instructions and create a small extension with the following files. 1. create a file as follow: app/code/local/Sushant/Upsell/Block/Product/List/Upsell.php 2.app/code/local/Sushant/Upsell/etc/config.xml 3.Active your module app/etc/modules/Sushant_Upsell.xml 4.Finally Open upsell.phtml app/design/frontend/Your package/Your theme/template/catalog/product/list And find And replace Read more…

Magento: Resize Image

You can resize image with fixed height and variable width. Or, you can resize with fixed width and variable height. Following code shows how you do it in Magento. 1. Fixed width of 700px 2.Fixed height of 700px 3. The following code will resize image proportionally and not let the Read more…

Magento: Category Filter in Product Admin Grid

You have to create an extension to display category filter in products grid. Please create the Extension with the following files : Create a new file in the following directory: app/code/local/Sushant/AdminGridCategoryFilter/Block/Catalog/Product/Grid/Render/Category.php Create a new file in the following directory: app/code/local/Sushant/AdminGridCategoryFilter/Helper/Data.php Create a new file in the following directory: app/code/local/Sushant/AdminGridCategoryFilter/Model/System/Config/Source/Category.php Create Read more…