When you are using apollotheme for bigcommerse store
You get notice
Widgets cannot be added to this page because it does not contain regions. To add regions, please refer to widget documentation.
add code in this page
{{{region name="page_builder_content"}}}
If you want to add region in home page
Please follow my guide
- Open home.html in templates > pages > home.html
- you see code:
{{#if theme_settings.theme_variation '==' 'ap-base-4'}}
{{> components/themes/home/ap-base-4}}
{{else if theme_settings.theme_variation '==' 'ap-base-3'}}
{{> components/themes/home/ap-base-3}}
{{else if theme_settings.theme_variation '==' 'ap-base-2'}}
{{> components/themes/home/ap-base-2}}
{{else}}
{{> components/themes/home/ap-base-1}}
{{/if}} - Please check what home page type you are using, default is ap-base-1 in file components/themes/home/ap-base-1
- open file components/themes/home/ap-base-1.html ( or ap-base-2, ap-base-3)
- add code to any where in this page, default can be bellow slideshow
{{{region name="page_builder_content"}}}
Related posts