How to use all 3 footer sections in child theme #388
-
The documentation says:
What follows are some XML code snippets, which is helpful. What I can't work out is which file to add those snippets to in a child theme so that they get picked up. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Usually, global layout modifications are done in the This is how we use it in the evolution theme: https://github.com/breezefront/theme-frontend-breeze-evolution/blob/master/Magento_Theme/layout/default.xml You can create the file with the same name in your custom theme. p.s. No need to copy the contents of the parent theme into your file! Magento will merge the contents automatically. |
Beta Was this translation helpful? Give feedback.
Usually, global layout modifications are done in the
Magento_Theme/layout/default.xml
file.This is how we use it in the evolution theme: https://github.com/breezefront/theme-frontend-breeze-evolution/blob/master/Magento_Theme/layout/default.xml
You can create the file with the same name in your custom theme.
p.s. No need to copy the contents of the parent theme into your file! Magento will merge the contents automatically.