Why can't I find the 'add button' section in the Mirora 2.0 theme?

Hello everyone,

I just bought the Mirora 2.0 theme - https://themeforest.net/item/mirora-watch-jewelry-store-shopify-theme/21896915

And I am not seeing any section with ‘add button’ I am new to shopify, but quite advanced with wordpress. How can it be that there is only like 15 sections in this theme…

Shop URL https://rllnrshop.myshopify.com/ I simply just want to add a button, and I cannot even insert a html box or any

Hello @danni1994

It’s GemPages support team and glad to support you today.

I would like to give you a solution to support you.

You can use ‘Rich text’ and hide other elements except button

Hope my solution can work and support you!

Kind & Best regards!

GemPages Support Team.

Hello @GemPages

Thanks for the fast reply - The issue is that the image I sent contains all of the sections that is available. Is there any way to get the ‘classic’ shopify sections, such as buttons, rich text etc. It seems weird that a theme only has 10-15 sections available??

@danni1994

If you want those elements, you should use the 3rd page builder app (e.g. Gempages). You will probably be very familiar with it when it is used a lot in wordpress

Thank you, I didn’t knew about any 3rd page builders, I will check it out!

@danni1994

You need to create a rich text section manually, you can follow this message to know how to add a “Rich Text” section to your Shopify store manually.

  • From your Shopify admin, go to Online Store > Themes.
  • Find the theme you want to edit, and then click Actions > Edit code.
  • In the Sections directory, click Add a new section with the name section-custom-html
  • Copy the below code for this file content.

        {%- for block in section.blocks -%}
          {%- case block.type -%}
            {%- when 'heading' -%}
              ## 
                {{ block.settings.heading | replace: 'p>', 'span>' }}
              
          
            {%- when 'text' -%}
              
                {{ block.settings.text }}
              

           
          {%- endcase -%}
        {%- endfor -%}
      

{% schema %}
{
  "name": "Rich text",
  "tag": "section",
  "class": "section",
  "settings": [
  ],
  "blocks": [
    {
      "type": "heading",
      "name": "Heading",
      "limit": 1,
      "settings": [
        {
          "type": "richtext",
          "id": "heading",
          "default": "

Talk about your brand

",
          "label": "Heading"
        }
      ]
    },

    {
      "type": "text",
      "name": "Text",
      "limit": 1,
      "settings": [
        {
          "type": "richtext",
          "id": "text",
          "default": "

Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.

",
          "label": "Text"
        }
      ]
    }

  ],
  "presets": [
    {
      "name": "Rich Text",
      "blocks": [
        {
          "type": "heading"
        },
        {
          "type": "text"
        }
      ]
    }
  ]
}
{% endschema %}
  • Click Save

In order to add a Custom HTML section, click into Customize (your Theme Editor) > Sections > Add Section > Rich Text.

I hope this message is useful to you.