Posts tagged products
Magetno fix : Cant add products to admin create order
0There 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>
Magento Tip: Add simple product url to grouped product items
0If 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 tip : Add product thumbnails to grouped products.
7There 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…)

Recent Comments