Hello,
I have a technical question.
I am using the new Dawn template (2.0) and I have been trying to integrate a simple “hello world” theme extension “app block” following the steps on the below page
https://shopify.dev/apps/online-store/theme-app-extensions/getting-started
After following these steps, I should be able to see my app block on my development store theme when adding a new section.
However, all I see is the message “No App blocks found” when attempting to add a new section - though I do see the standard options, just not my new app block.
I have tried creating a new development store - same result.
I have tried updating the CLI and creating another app - same result.
It’s the shell project created with the CLI with just one file in the “blocks” folder as a really basic “hello world” example - an editable header test. (in the root there is also the .env and shopify-cli.yml files)
{%- if block.settings.heading -%}
{{ block.settings.heading }}
{%- endif -%}{% schema %}
{
“name”: “special”,
“target”: “section”,
“templates”: [“product”, “index”],
“settings”: [
{
“type”: “text”,
“id”: “heading”,
“label”: “Heading”,
“default”: “Type something here”
}
]
}
{% endschema %}
I have followed the instructions to push, then enable on development store but it’s just not appearing in the list.
No errors during the process. Everything created, registered, enabled just fine. So at a loss as to why it doesn’t appear.
Also, yes, I am attempting to add the section on the index or product pages.
Really would appreciate any help.
Thank you,
Dan.
