Missing "add section" button Debutify 4.10.2

Hi. I can’t find the add section button. It’s missing from Home Page. I’m using Debutify 4.10.2

Does anyone know what’s going on?

3 Likes

Strange. You should get in touch with Debutify to find out why that’s happening.

2 Likes

Hello friend,

I have the same problem.

2 Likes

Same thing is happening to me. I created the store in the last week, and it hasn’t been published yet.

1 Like

Same issue for me. It looks like its an issue with their latest version or something. Their tech support tried to fix it but didn’t properly fix the issue either.

1 Like

I also have the same problem, has anyone found out how to solve it please?

Same issue, not able to add any section.
Debutify support is also not available instantly.
anyone can help?

hello, so I’ve had this issue , messaged debutify and got it solved in a matter of 5 minutes… ill send you the information below –

This seems to be occurring due to a Shopify update. It seems that themes can no longer be uploaded without a section.

At least one section is mandatory for it to work.

To fix the issue, open the edit code of on your theme and copy the following to the “index.json” file.

{
  "sections": {
    "1d0bb279-0557-4faf-9a5d-27a9ac55062c": {
      "type": "featured-image",
      "settings": {
        "show_on_desktop": true,
        "show_on_mobile": true,
        "full_width": true,
        "section_style": "section-blank",
        "image_link": ""
      }
    }
  },
  "order": [
    "1d0bb279-0557-4faf-9a5d-27a9ac55062c"
  ]
}

This will add a featured image section to the theme and the “add section” button will appear below it.

You can then delete the featured image section, however only after they add a second section.

2 Likes

To fix the issue, open the edit code of on your theme and copy the following to the “index.json” file.

{
  "sections": {
    "1d0bb279-0557-4faf-9a5d-27a9ac55062c": {
      "type": "featured-image",
      "settings": {
        "show_on_desktop": true,
        "show_on_mobile": true,
        "full_width": true,
        "section_style": "section-blank",
        "image_link": ""
      }
    }
  },
  "order": [
    "1d0bb279-0557-4faf-9a5d-27a9ac55062c"
  ]
}

This will add a featured image section to the theme and the “add section” button will appear below it.

You can then delete the featured image section, however only after they add a second section.