I have made a custom page for refund policy only. And I don’t want the default refund policy page to work. Right now, this URL /policies/refund-policy opens up blank page as I have removed all content. I tried to add a redirect but policy pages redirect doesn’t work. And I can’t seem to find how to get rid of this URL all together.
Anyone have idea if this is possible?
Thank you for your response. That is not good but we have to live with it I guess.
1 Like
I was able to do it through URL check and the redirecting to the desired location using jQuery.
{% if request.path contains ‘/policies/refund-policy’ %}
{% endif %}
No official way but this works for me at the moment.
1 Like
Hello,
May I ask where exactly placed this redirect jQuery?
I put it in theme.liquid, between and . Worked perfectly. Thank you to @rezzsiddiqui !
1 Like