cancel
Showing results for 
Search instead for 
Did you mean: 

catalog and cart price rules

SOLVED

catalog and cart price rules

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

1 ACCEPTED SOLUTION

Accepted Solutions

Re: catalog and cart price rules

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>

.

 

---
Problem Solved Click Accept as Solution!:Magento Community India Forum

View solution in original post

4 REPLIES 4

Re: catalog and cart price rules

Go to "promotions" in the top menu. You'll see 2 menu items in the dropdown; catalog price rules and shopping cart price rules.

Re: catalog and 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?

Re: catalog and cart price rules

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>

.

 

---
Problem Solved Click Accept as Solution!:Magento Community India Forum

Re: catalog and cart price rules

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