Posts tagged product

Magento tip: after upgrade prices on product page simple product are gone……

2

If you are upgrading Magento or even using a pre 1.4.2 theme you may well find that your prices are not showing on your product page.

Simple fix

Open /app/design/frontend/base/your_theme/template/product/

Find the line:

<?php echo $this->getChildHtml(\'product_type_data\') ?>

replace with :

<?php echo $this->getPriceHtml($_product, true) ?>
blog1

Add attribute to Grid or List view

0

This came up twice in one day so it is worth adding here. Often the information that Magento provides in the grid view is not enough for a specific product type. In this case we add two attributes to the grid.
(more…)

How to add Product Image and Description to Email to a friend Transactional Email

3

It would be very handy when a user uses Magento’s Email to a friend feature that at least an image of the product and description can be sent to the friend in question. While the Image can be added easily it is a little more tricky to get the description.
(more…)

magento-logo

Magento Extension Highlight : Remerce Product Question

0

Every now and then we find a great extension that punches above its weight.


(more…)

magento-logo

How to create a Random Featured Product list on home page in Magento

38


It seems some what amazing that such a simple request can be so tricky to track down. The scenario is simple. You want to display a set of products on your home page from a hidden category to be randomly displayed.

(more…)

Go to Top