Add region for pagebuilder of Apollotheme Bigcommerce theme

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.
Please follow my guide to fix it
that is apply for apollotheme only
1. Access admin, manage of your site
2. Open Storefronts: select themes
3. Edit theme files
4. Access templates > pages > page.html

add code in this page
{{{region name="page_builder_content"}}}

If you want to add region in home page

Please follow my guide

  1. Open home.html in templates > pages >  home.html
  2. 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}}
  3. Please check what home page type you are using, default is ap-base-1 in  file components/themes/home/ap-base-1
  4. open file components/themes/home/ap-base-1.html ( or ap-base-2, ap-base-3)
  5. add code to any where in this page, default can be bellow slideshow
    {{{region name="page_builder_content"}}}
Categories