Create a Landing Page without the header and footer of the main website

Hi everyone,

I need to create a landing page for a specific product - but apparently, when I hide the header group and footer on the landing page- the home page is affected. How can resolve this matter? Is there any turn around? - Here is the link - https://ultrabrightlightz.com/

I did it months ago for a special landing page. The trick is to remove the code from theme.liquid file only for specific templates.

You need to create a new page template, you can use the customizer and then edit the theme.liquid file.
If the theme is recent (last 2 years) you should have something like this

{% sections 'header-group' %}

Now, check my next code example and apply the logic that you need:

{%liquid
        assign show_header = true
        assign show_footer = true

        if template.suffix == 'lp-ads'
          assign show_header = false
          assign show_footer = false
        endif

        if template.name == 'cart'
          assign show_footer = false
        endif
      %}

      {% if show_header %}
        {% sections 'header-group' %}
      {% endif %}​