Hi,I recently added Lumin theme to my Shopify store and since then I’m unable to move my sections and blocks, I want to move this text with bullet points to this position under my title, but it won’t allow me to do so please help me with this if someone knows the code how to do it or if someone is facing the same problem?
Topic summary
A user installed the Lumin theme on their Shopify store and can no longer move sections and blocks in the theme editor. They specifically want to reposition a bulleted text block beneath a product title but the interface won’t allow it.
A respondent asks for clarification on whether:
- A) No sections/blocks can be moved anywhere (potential bug)
- B) One specific element can’t be placed where desired (theme limitation)
Suggested troubleshooting steps include:
- Testing in a different browser to rule out technical issues
- Contacting the Lumin theme developers directly for bug reports
- Using a custom-liquid section/block as a workaround
- Trying Shopify’s Sidekick AI assistant for custom solutions
The issue remains unresolved pending the user’s clarification about the scope of the problem.
Hi @Tanveer2 which is it
A) you can move NO sections or blocks in ANY template
B) you can’t get some specific thing you want in some specific spot the theme doesn’t support
These are not the same do not misrepresent them as the same.
One is a possible bug the other is a custom work.
For #A try in a different brower to rule out technical issues, or reach out to the actual theme developers DIRECTLY.
For #B often just try a custom-liquid section/block in that area.
Or ask the sidekick ai-assistant to try and generate such a thing if you have time to burn.
Though if you need it done properly reach out to me for servcies(click profile pic on forums for options)
Hi,
Hope this will help
- Try a Rich text section first (fastest).
Create section and Add it under your title image
Code example
{% comment %}
Section: Text with Bullets
Usage: Add under Image banner in the Theme Editor. Each line becomes a bullet.
{% endcomment %}
<section class="section-text-bullets">
<div class="page-width">
{% if section.settings.heading != blank %}
<h2 class="text-bullets__heading">{{ section.settings.heading }}</h2>
{% endif %}
{% if section.settings.intro != blank %}
<p class="text-bullets__intro">{{ section.settings.intro }}</p>
{% endif %}
{% assign lines = section.settings.bullets | newline_to_br | split: '<br />' %}
{% if lines.size > 0 %}
<ul class="text-bullets__list" role="list">
{% for line in lines %}
{% if line != blank %}
<li class="text-bullets__item">
<span class="text-bullets__icon" aria-hidden="true">✓</span>
<span class="text-bullets__text">{{ line | strip }}</span>
</li>
{% endif %}
{% endfor %}
</ul>
{% endif %}
</div>
<style>
.section-text-bullets { margin: 24px 0; }
.text-bullets__heading { margin: 0 0 8px; }
.text-bullets__intro { margin: 0 0 12px; }
.text-bullets__list { list-style: none; padding: 0; margin: 0; }
.text-bullets__item { display: flex; align-items: flex-start; gap: 8px; margin: 6px 0; }
.text-bullets__icon { font-weight: 700; line-height: 1.2; }
</style>
{% schema %}
{
"name": "Text with Bullets",
"settings": [
{ "type": "text", "id": "heading", "label": "Heading", "default": "Why customers love this" },
{ "type": "textarea", "id": "intro", "label": "Short intro (optional)", "default": "" },
{
"type": "textarea",
"id": "bullets",
"label": "Bullets (one per line)",
"default": "Free shipping over $50\n30-day easy returns\n24/7 support"
}
],
"presets": [
{ "name": "Text with Bullets", "category": "Text" }
]
}
{% endschema %}
</section>
- If dragging is blocked, add the Text with Bullets section via the code above and reorder in the template JSON if needed.
- Optional: we can embed bullets directly inside your Image banner section with a custom block.
Hi @Tanveer2
Could you please let me know what problem you’re facing while moving the section or block?
Best regards,
Devcoder ![]()
So As you can see I cannot move my section u der my title or anywhere, I want to move it in Template- Production information- under title

You seem to be confused. This block belongs inside its section. That means you cannot move it into another section from the theme editor. I’ll give you an example. Try to drag the product price block outside its section and move it into a different section, like the page title. You can’t. It doesn’t work that way. You can move blocks in their own section, and you can move the sections. You cannot place a block from one section into another, and you cannot place an entire section into another section. Hierarchy. Page-Sections-Blocks
I tried adding a section my title and it worked but the thing is after I add it I need variant package, inventory status, price tag, buy button and it does not allow me to add it in this new Section, I only have the AI- generation option. this is how it looks right now
it won’t even allow me to copy paste bundles, buy button etc to this new section

