Magento 2.1 Configuration – Why Can’t Change Catalog Price Scope to Website

configurationmagento-2.1scope

Using Magento 2.1.5, I am trying to change the Catalog Price Scope option to Website from Global in Stores > Configuration > Catalog > Catalog > Price, but I cannot as it is disabled.

I have got 2 websites, each with one store and one store view.

Can someone help explain why I cannot change this option under the Default Config section for the scope. If I change the scope to anything else, I don't even see the option (which makes sense).

Config
Scope

Best Answer

Check env.php for config setting overrides. I suspect you might have something like below in your env.php

'system' =>
    array(
        'default' =>
            array(
                'catalog' =>
                    array(
                        'price' =>
                            array(
                                'scope' => 0
                            )
                    )
            )
    )
Related Topic