We use cookies to make your experience better. To comply with the new e-Privacy directive, we need to ask for your consent to set the cookies. Learn more.
product
- May 17, 2023 32
Optimizing product recommendations is crucial for improving online sales and enhancing the overall customer experience. Here are eight strategies to help you achieve this:
- ...
- April 29, 2018 103
Today I am going to describe how to resize the product image in Magento 2. Product image size is the good attribute to make your goods closer to the consumer with the product details. This...
- April 04, 2016 40
In this article I'm going to describe how you add captcha in product review form. In magento, a default captcha is available for only some forms like login, registration, checkout as guest...
- February 21, 2016 39
In this article I'm writing code how you get users who has bought this products. You can achieve this by magento models. If you want an actual query, you can probably do something as simple...
- October 24, 2015 26
In this article I have explained you how to add custom tab in product edit section of admin through a simple custom magento extension.
In Magento, it is possible to add new attributes...
- September 13, 2015 18
Related products is one of the greatest up-sell features in Magento. However, the bad thing is that you need to assign related products for each product manually. It could be very time-consuming...
- May 24, 2015 61
When we re-size product image we will get white space in border, so we can remove that white space when product image is re-sized
Use this code to re-size the product image with out...
- April 12, 2015 24
[php]
$productId = 7; //product id of configurable product$_Product = Mage::getModel('catalog/product')->load($productId);
$simpleProducts = Mage::getModel('catalog/product_type_configurable')->getUsedProducts(null,$_product);...