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: Add wysiwyg editor in custom module.

Step-1 Go to following path and open Edit.php app\code\local\Namespace\Modulename\Block\Adminhtml\Modulename\Edit.php and Add this Function: Step-2 Go to following path and open Form.php app\code\local\Namespace\Modulename\Block\Adminhtml\Modulename\Edit\Tab\Form.php Find the function protected function_prepareForm() and add the following after And add this code to display wysiwyg editor: Step-3: Go to following path and open yourmodulename.xml if its 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…