Third Party Application Error for Shopify
Table of Content
When you are dealing with a proxy page of Shopify, the Third Party Application Error is common: “There was an error with a third party application.”, this may be possible when your application is having an error somewhere in the code, review if it has.
But what if your code is fine, the most possible cause of this error is that size of content you want to display on this page exceeds the limit. In this case, you can fix this by:
Description
Third Party Application Error for Shopify
Shopify proxy page error “There was an error in the third party application.”
1) Setting the ‘content-length/size’ in the header and don’t forget to set the content type as ‘application/liquid’.
<?php
header('Content-Type: application/liquid');
header("Content-Length: 2400");
//your data to display
OR
2) The simple hack is to do this work that shows only necessary data on your proxy page and load remaining data via ajax.
cheer… 🙂
View Comments
Comment or Ask a Question
Quick Links