cancel
Showing results for 
Search instead for 
Did you mean: 

Magento CE 2.2.4 Luma Theme footer setting error

Magento CE 2.2.4 Luma Theme footer setting error

I tried to edit the Copy Right footer under Luma Theme. It is under Content -> Configuration, The scope is store view. No matter how I modify the message, i always get error message saying "Something went wrong while saving this configuration: Area is already set". I was able to modify this footer in previous version. Because I changed the year from 2017 to 2018 at the beginning of the year and it was ok. but now it keep giving me this error. Something wrong with CE 2.2.4?

13 REPLIES 13

Re: Magento CE 2.2.4 Luma Theme footer setting error

Hi @WZ_OZES

 

Could you please check error log in var/log directory ? post the error log which is there in log file , so its helps us to troubleshoot the issue !!

if issue solved,Click Kudos & Accept as Solution

Re: Magento CE 2.2.4 Luma Theme footer setting error

Seems to This is the bug for magento 2.2.4

I have faced the same type of error but our data was changed so we have to wait magento will solve this issue.

 

If you change anything on that page changes will be applied.

 

So you don't want to worry about it you can change your content successfully.

 

If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial

Re: Magento CE 2.2.4 Luma Theme footer setting error


@Manthan Dave wrote:

Hi @WZ_OZES

 

Could you please check error log in var/log directory ? post the error log which is there in log file , so its helps us to troubleshoot the issue !!


Nothing recorded in exception.log. 

Re: Magento CE 2.2.4 Luma Theme footer setting error


@Rakesh Jesadiya wrote:

Seems to This is the bug for magento 2.2.4

I have faced the same type of error but our data was changed so we have to wait magento will solve this issue.

 

If you change anything on that page changes will be applied.

 

So you don't want to worry about it you can change your content successfully.

 


How did you get around with this error, Rakesh?

Re: Magento CE 2.2.4 Luma Theme footer setting error

This is the bug for all that migrated from older version to latest 2.2.4

So we have to wait until Magento will fix this bug but this bug is not hurdle for our site anyway because our changes will be taken by site and all the changes are saved.

If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial

Re: Magento CE 2.2.4 Luma Theme footer setting error


@Rakesh Jesadiya wrote:

This is the bug for all that migrated from older version to latest 2.2.4

So we have to wait until Magento will fix this bug but this bug is not hurdle for our site anyway because our changes will be taken by site and all the changes are saved.


Maybe i have to create a new footer block myself until Magento fix this issue.

 

How can I remove the magento footer?

Re: Magento CE 2.2.4 Luma Theme footer setting error

You just need to add below xml in default.xml file,

<referenceContainer name="footer-container" remove="true"/>
If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial

Re: Magento CE 2.2.4 Luma Theme footer setting error


@Rakesh Jesadiya wrote:

You just need to add below xml in default.xml file,

<referenceContainer name="footer-container" remove="true"/>

Hi Rakesh, using this command will only remove the footer container. Copy right is still there. Below is the code inside default.xml

<referenceContainer name="footer">
<block class="Magento\Store\Block\Switcher" name="store_switcher" as="store_switcher" after="footer_links" template="Magento_Store::switch/stores.phtml"/>
</referenceContainer>
<referenceBlock name="report.bugs" remove="true"/>
<move element="copyright" destination="before.body.end"/>
<referenceBlock name="footer_links" remove="true"/>

Re: Magento CE 2.2.4 Luma Theme footer setting error

You can use below xml,

<referenceContainer name="footer" remove="true"/>

if still error let me know.

If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial