Create template with different layout page.

Topic summary

A user seeks to create a landing page with a custom layout in Shopify OS 2.0, specifically trying to use {%layout none%} in JSON templates but unable to find the option.

Suggested Solutions:

  • Third-party page builders: Multiple users recommend apps like PageFly, Shogun Landing Page Builder, and Layoutbase—drag-and-drop tools that work without coding and offer 24/7 support.

  • Native JSON solution: One user provides a code-based approach by adding "layout": false before the sections object in the JSON template:

{
  "layout": false,
  "sections": {
    ...
  },
  "order": [
    ...
  ]
}

This allows creating templates without the default theme layout wrapper directly in Shopify 2.0, avoiding the need for external apps.

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

Hello,

I am looking to create landing page with different layout in OS 2.0, I didn’t find any option for creating any new JSON with {% layout none %}

Thanks, Ashish

3 Likes

Hii @ashukasma ,

you can use the following Apps to create the landing page.

  1. PageFly Landing Page Builder

  2. Shogun Landing Page Builder

    Thank you.

Thank you @Zworthkey for mentioning us.

Hi @ashukasma , you can use PageFly, the Free Landing page builder app with 24/7 support live chat because PageFly works with Online Store 2.0

1 Like

Hey there, I would like to suggest you to use a good shopify page builder such as Layoutbase ://apps.shopify.com/layoutbase-page builder which can help you and make your work easy and handy without any coding, It is a drag & drop page builder. Thanks

You can actually achieve this by just adding “layout”: false before the sections part in the JSON object.

"layout": false,
"sections": {
  ...
},
"order": [
  ...
]