php - Shopify proxy application/liquid will only download response

one text

Solution:

When you make a request to the endpoint, the proxy returns that desired content (Liquid or JSON or vanilla HTML). It is up to you to decide where to display it in DOM. Since you know where you want to display your response, you can use Javascript to pinpoint a DOM node to replace, and replace it.

The proxy pattern has no magic with the response that makes it suddenly visible. If the response has Liquid tags in it, Shopify will fill those in as best it can, meaning the big string of HTML you get back from the Proxy, is ready to be glued into DOM.

Source