Make website scroll down only on homepage

Solved

Make website scroll down only on homepage

Viibed
Excursionist
23 0 5

I recently put in some code for my website to load further down the page so my homepage image could be instantly shown. I soon realized that it also did it for every single page on my website. I only want it to start further down on the homepage, and not any other page.

 

Viibed_0-1722198202843.png

Here's where the other pages start.

 

 

 

I can paste the code I am using now, (this code is located in theme.liquid above the </body> tag)

 

<script>
   window.scrollTo({
     top: 500,
     left: 0,
     behavior: 'smooth'
   });
</script>

 

 I only want this code to work ONLY on my homepage, and not any other page. Here is my website: Viibed

 

Please help, and thank you!

Accepted Solution (1)

vinh0225
Shopify Partner
138 27 25

This is an accepted solution.

Hi @Viibed 

{% if template == 'index' %}

<script>

window.scrollTo({ top: 500, left: 0, behavior: 'smooth' });

</script>

{% endif %}
Was my response useful?  Click Like to let me know!
Was your query resolved? ✓ Mark it as a Resolved Solution
If you need custom Shopify changes, ️you can hire me.
Contact me at  ✉️ jalicorich@gmail.com.

View solution in original post

Replies 4 (4)

vinh0225
Shopify Partner
138 27 25

This is an accepted solution.

Hi @Viibed 

{% if template == 'index' %}

<script>

window.scrollTo({ top: 500, left: 0, behavior: 'smooth' });

</script>

{% endif %}
Was my response useful?  Click Like to let me know!
Was your query resolved? ✓ Mark it as a Resolved Solution
If you need custom Shopify changes, ️you can hire me.
Contact me at  ✉️ jalicorich@gmail.com.
Viibed
Excursionist
23 0 5

Do I replace the original code with this?

vinh0225
Shopify Partner
138 27 25

Yes, exactly.

Was my response useful?  Click Like to let me know!
Was your query resolved? ✓ Mark it as a Resolved Solution
If you need custom Shopify changes, ️you can hire me.
Contact me at  ✉️ jalicorich@gmail.com.
Viibed
Excursionist
23 0 5

Worked, thank you!