You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have created my own custom theme (eg CrimsonTheme) with a third party css-framework and I need to override the templates from the UiBundle (eg Grid); I could put my templates in this location themes/CrimsonTheme/templates/bundles/SyliusUiBundle as stated in the documentation, but this bundle is shared by the default theme for both the shop and the admin UI, so I need a different approach where my new shared templates will only be available for my custom themes, how can I organize this?
The text was updated successfully, but these errors were encountered:
@zpi12lmm, this should be overridden in %kernel.project_dir%/templates/bundles/SyliusUiBundle/... not under the themes directory..
In this case, this will override the templates for both SyliusAdminBundle and SyliusShopBundle because they both use templates from SyliusUiBundle, meaning they are shared.
I have created my own custom theme (eg CrimsonTheme) with a third party css-framework and I need to override the templates from the UiBundle (eg Grid); I could put my templates in this location
themes/CrimsonTheme/templates/bundles/SyliusUiBundle
as stated in the documentation, but this bundle is shared by the default theme for both the shop and the admin UI, so I need a different approach where my new shared templates will only be available for my custom themes, how can I organize this?The text was updated successfully, but these errors were encountered: