Child theme update
Why update a child theme?
Due to a current bug in Shopware 6.6.4, a child theme update is necessary when switching to Shopware 6.6. You can find out more at Could not assign child-theme
With the introduction of configInheritance
in Shopware 6.4.8.0, Shopware has solved the inheritance of theme configurations. Child theme updates are therefore usually no longer necessary.
You should therefore check if your child theme is already in version 2.11.0. If you are using an older child theme, please update to this or a higher version. After that, no further child theme updates are necessary.
Occasionally, we may make our provided child themes available in a new version in addition to the main theme offered in the store.
These updates are usually optional and includes, for example, new configuration fields. We always make sure that our themes are compatible with older child themes. If a child theme update is not performed only the new theme configuration settings are not available and you do not have access to the new feature. From Shopware 6.4.8.0 the new configurations will be available due to the config inheritance.
How to update a child theme
Before you start the update, please note that for child themes with individual programming on file level the second update option has to be performed.
or
What's in a child theme?
Only the src/Resources/theme.json
and the composer.json
contain relevant content that is important for the update:
composer.json - Contains only as a change the new version number, so that in the administration the update can be performed.
theme.json - Contains the theme configuration of the child theme.
All other files in the child theme like the base.css, overrides.scss and javascript files must be in a child theme for it to be installed and assigned. These files are basically empty and do not contain any relevant content and will never receive any content by us.
Last updated