All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I want to make my product page, my homepage. The point is that everyone is redirected there. Even if you press the Logo. (The product page was made with PageFly, is that is important)
Thank you.
Hi, there
I think you can set up a redirect from the homepage to a specific product page .
You could add a dom load linstener using js when the customer visit the home page , set its window href to the product page.
This could be need a little code ,if you need help .please DM me
Hi
You mean this?
{% if template == 'index' %}
<script> window.location.href = '/products/example';
</script>
{% endif %}
Pretty much the same.It would be better to perform the href replacment after the DOM (Document Object Model) document has been loaded.