Magento 1.9.3.9.
Hi, in my back end I can not find where to set up promotions(catalog and cart price rules), please help
Solved! Go to Solution.
Hi @hypnos761
It may be disabled by editing the core file in your Magento installation.
Check \app\code\core\Mage\CatalogRule\etc\adminhtml.xml if it has following code commented
<menu> <promo translate="title" module="catalogrule"> <title>Promotions</title> <sort_order>50</sort_order> <children> <catalog translate="title" module="catalogrule"> <title>Catalog Price Rules</title> <action>adminhtml/promo_catalog/</action> <depends><module>Mage_Catalog</module></depends> </catalog> </children> </promo> </menu>
.
Go to "promotions" in the top menu. You'll see 2 menu items in the dropdown; catalog price rules and shopping cart price rules.
this is the problem, the promotions menu is not shown, do I need an extension or is it in the magento standard installation?
Hi @hypnos761
It may be disabled by editing the core file in your Magento installation.
Check \app\code\core\Mage\CatalogRule\etc\adminhtml.xml if it has following code commented
<menu> <promo translate="title" module="catalogrule"> <title>Promotions</title> <sort_order>50</sort_order> <children> <catalog translate="title" module="catalogrule"> <title>Catalog Price Rules</title> <action>adminhtml/promo_catalog/</action> <depends><module>Mage_Catalog</module></depends> </catalog> </children> </promo> </menu>
.
in the path there is only the folder called Model. Then I found another 'folder called __CatalogRule in which there is everything, I restored it and now the promotions menu is shown, thanks