Magento 2.2.4 – How to Change Footer Copyright

magento2.2.4

I tried changing footer copyright in Content->Configuration Edit Active Theme and Change Copyright Message in Footer Tab.
But I get Error as "Area is Already Set" on Saving it.

So, How to Change Footer Copyright Message in Magento 2?

Best Answer

as explained by Sukumar Gorai it is a bug with Magento 2.2.4. Personally I have upgraded to 2.2.6 and it solved the issue. I used the following commands:

sudo composer require magento/product-community-edition 2.0.2 --no-update
sudo composer update
sudo rm -rf var/cache var/di var/generation var/page_cache
sudo php bin/magento cache:clean
sudo php bin/magento cache:flush
sudo php bin/magento setup:upgrade
sudo php bin/magento setup:di:compile
sudo php bin/magento indexer:reindex

followed by a running of a personal script that re-deploys all static content and fixes permissions.

Related Topic