Let the people access only the homepage of the website

Solved

Let the people access only the homepage of the website

abailea077
Excursionist
44 0 16

Hi everyone!

 

Is it possible to let people access only my homepage?

we have the pre-opening tomorrow and I want the people to access the homepage when they type my website.

 

The other pages are still not done yet, so I dont want them to see anything else.

 

How can I do that?

 

Here is my URL:

 

https://toroeatstreats.com/

Password: brayden

 

Thank you

Accepted Solution (1)

theycallmemakka
Shopify Partner
1673 400 419

This is an accepted solution.

Hi @abailea077 ,

 

You can add below codes to the theme.liquid file just above </body>

 

This code will redirect all the users to the home page.

    {% unless template contains 'index'  %}
      {% unless request.design_mode %}
        <script>
          window.location.href = '/';
        </script>
      {% endunless %}        
    {% endunless %}

 

If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

View solution in original post

Replies 2 (2)

theycallmemakka
Shopify Partner
1673 400 419

This is an accepted solution.

Hi @abailea077 ,

 

You can add below codes to the theme.liquid file just above </body>

 

This code will redirect all the users to the home page.

    {% unless template contains 'index'  %}
      {% unless request.design_mode %}
        <script>
          window.location.href = '/';
        </script>
      {% endunless %}        
    {% endunless %}

 

If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

abailea077
Excursionist
44 0 16

Thank you! It did worked 🙂