
Hallo
I'm wanting to add a redirect on some entity forms (not hosted on web pages), using a content snippet in the header of all pages I'm able to insert liquid into entity forms, I'm wanting to redirect this entity page without the use of Javascript - ie so the redirect happens server side before any of the entity form content is loaded.
As far as I can see there's no functionality in Liquid to do this but I thought I'd check in case anyone has any ideas about how this might be possible in liquid or how it might be possible to redirect an entity form using server side only code.
Cheers!
Tom
*This post is locked for comments
I have the same question (0)Not sure if this is what you are looking for, but I don't think you can use direct liquid operators with this.
We use jquery for redirecting:
window.location = urlToLoad;
The one thing that you can do with liquid is specify pages within links:
<a href="{% new_enittyname.urlfieldname %}" />
Hope this helps.