Nate commented on Is there any way to customize my account page by using php?
Hi Rashmi,You can customize your account page using Liquid through the theme editor, but not with PHP. To show the customer's total purchasing you could use an application proxy to display the total in...
View ArticleNate commented on Shopify Shop Api Call Limit
Hello,It looks like you've exceeded the API rate limit, for a detailed description of how the limit is calculated check this out:...
View ArticleDave S commented on CDN cache serving stale content to new users
There used to be an option for it, but it's either moved or it's just the default now.If you go to the following page, you should be able to click "Set as primary" on the main...
View ArticleDave S commented on CDN cache serving stale content to new users
Actually, it's when you click on "Set as primary", if gives you an option to "Redirect all traffic to this domain".
View ArticleAl Priest commented on CDN cache serving stale content to new users
Thanks I've just updated that and will see how that affects things.
View ArticleDave S commented on CDN cache serving stale content to new users
All seems to be working now. I'm getting redirected to www.potage.co.uk (for all URLs) and the time is correct.
View ArticleWeek end commented on Shopify Shop Api Call Limit
Yes, I know. I exceeded the API rate limit.Then I check this documentation and correct my script, but now any single request returns an error 429 - Too Many RequestsIts look like ban. Any ideas?
View ArticleAl Priest commented on CDN cache serving stale content to new users
I see the redirects working, but the time I see (chrome&safari on ios) is 15:48 so a cached page, potentially out of date. Not sure what makes Shopify think the page is stale and should be...
View ArticleDave S commented on CDN cache serving stale content to new users
Actually, you're right. It is caching. If you try it in an incognito/private window, the time updates, so it must be something to do with sessions. Perhaps the CDN only serves a fresh page to the same...
View ArticleNate commented on Shopify Shop Api Call Limit
Every request made after hitting the 2 requests/second rate limit will return a 429 error code. There is no ban, it's likely that the script is averaging more than 2 req/second and hitting the limit.
View ArticleJuan Cortes commented on Adding new customer metafields in private app
{ "customer": { "id": "268827037", "metafields": { "key": "what-is-your-height", "value": "4'0\" or 121.92 cm", "value_type": "string",...
View ArticleAl Priest commented on CDN cache serving stale content to new users
Yep, editing it causes a cache invalidation and the page freshens. But if I had a product, with potential availability, I wonder how that works? Unless the Shopify pages load through Ajax but I didn't...
View ArticleWeek end commented on Shopify Shop Api Call Limit
I interrupt the script after the first request:echo "<pre>";print_r($response);echo "</pre>";die();This may not be exceeding the limit. Before blocking everything worked fine.
View ArticleCancel Order Created By API by Sam Russo
I have several orders which were created with API calls. When they were created, the "financial_status" attribute was set to "pending". There does not seem to be a way to change this to "paid" in the...
View ArticleSiam commented on Webhook not working on product/delete
Thanks for the reply Nate. My heartbeat is back to normal now.
View ArticleUnauthorized to Themes by Amit
Hi,My App pushes an asset to the stores which install it. To get to assets you need to first get the Themes object.For most stores this succeeds, but in some cases I get an error of Unauthorized.I am...
View ArticleOrder API - Backdate Orders by Nicholas Lim
Hi,I was wondering if it's possible to back date orders using the post new order Order API. I've tried modifying the created_at date but on the dashboard, orders still show as being created at the time...
View ArticleDave S commented on Cancel Order Created By API
What do you mean by "admin tool"? It's possible to mark payments as paid via the API, like so (in Ruby):ShopifyAPI::Order.new(:id => order_id, :readonly => false).captureYou can also delete via...
View ArticleSam Russo commented on Cancel Order Created By API
By Admin, I simply meant the shopify web gui. An unskilled order processor (person) will be managing these orders and needs the ability to delete (cancel) orders.
View ArticleUploading product images from AWS S3 to Shopify through API call fails by...
Hello!We are running into an issue lately where our API calls to add product images from a link, are failing. They seem to fail in two distinct ways: 1) No response.- We are often timing out after 60...
View Article