Keep collapsible text section open by default - Prestige theme

Topic summary

A user seeks to keep a collapsible text section open by default in the Prestige theme. They reference a solution for the Dawn theme involving <details> tags and specific code modifications, but note that Prestige doesn’t use the same structure.

Key points:

  • The Dawn solution involves finding “collapsible_tab” code and adding settings for an “Open by default” checkbox
  • A respondent clarifies that simply adding JSON settings won’t work—actual Liquid code modifications are needed
  • The discussion remains unresolved, with another user also seeking a Prestige-specific solution

Status: Open question with no working solution provided yet for the Prestige theme.

Summarized with AI on November 10. AI used: claude-sonnet-4-5-20250929.

Hello,

I’m trying to keep one of the collapsible text sections open by default in the Prestige theme. The following is the solution for the dawn theme, but I don’t see a

tag in Prestige. Any help would be much appreciated!

Dawn theme solution:

Find collapsible_tab by Ctrl + F and add the below code inside the

tag

{% if block.settings.open %} open {% endif %}

Find “type”: “collapsible_tab” and add the below code after “settings”: [

{
“type”: “checkbox”,
“id”: “open”,
“label”: “Open by default”
},

1 Like

Hi @elementmatcha

Putting JSON setting will not help you have to put liquid code regarding open by default in your code.

Hello All,

Did you find solution for Prestige theme ? Thanks a lot