Posts tagged products

Magetno fix : Cant add products to admin create order

0

There appears to be a bug in magento 1.5x where by manually creating an order and trying to add a product does not work.  It appears to be an issue with ext-tree.js which is called unnecessarily on this page.

To fix edit app/design/adminhtml/default/default/layout/sales.xml

 

and add


<action method="removeItem"><type>js</type><name>extjs/ext-tree.js</name></action>

like so:


<adminhtml_sales_order_create_index>
<reference name="left">
<action method="setIsCollapsed"><value>true</value></action>
</reference>
<reference name="head">
<action method="removeItem"><type>js</type><name>extjs/ext-tree.js</name></action>
<action method="addJs"><file>mage/adminhtml/sales.js</file></action>

 

Here shown with thumbnail patch

Magento Tip: Add simple product url to grouped product items

0

If you are offering grouped products it is often useful to give more details on the individual ‘simple’ items page.

All you need is to add the correct url link to the name of the product…
(more…)

magento-logo

Magento tip : Add product thumbnails to grouped products.

7

There are many things in the Community Edition of Magento that seem to be half finished. The example that we are looking at here is the Grouped Product. This is a very useful feature that allows show owners to add a group of simply products together into a group. The shopper can then select any or all of the products that are part of the group.
(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