Jason commented on Any way to export discount codes from Shopify?
@wthomasoh - what are you trying to to do with the codes? I might be able to automate some things via ShopifyFD so I'm curious to know what you'd be wanting. Drop me a line if you like.
View ArticleHow to add note_attributes to an order WITHOUT deleting old ones? by Siam
So I am not sure why the API's working this way. I simply want to add a new attribute to the order, but it overwrites the older ones. That really makes no sense to me, but that's how it is. Surely...
View ArticleSiam commented on Update cart total with discount via API
The way bold apps do it is that they don't actually change the cart_total but replace the products in the cart with hidden variants with different prices.There really is no way of changing cart_total...
View ArticleHunkyBill commented on Webhook URL is called between 2-4 times
@Siam. In practice, using cache as a flag will fail due to race conditions. When a single thread receives a hit with an ID, setting the cache to record it is easy. The problem is having other threads...
View ArticleSiam commented on Webhook URL is called between 2-4 times
@HunkyBill That is indeed correct. You raise a good point. In fact, I almost gave up on memcache due to this (I only ever used set and get). But luckily while randomly looking at other functions, I...
View Articlekt commented on Update cart total with discount via API
Thanks for the quick response siam.See I can't change the price of a variant via an API. There is not such feature in cart APIs , I guess . Do you know some way of changing a product variant's price on...
View ArticleJames MacAulay commented on What is the difference between API key, Secret...
api key: a public unique identifier for your app.shared secret: a secret shared between Shopify and your app, used for authentication. Used by Shopify to sign webhooks and other requests.access token:...
View ArticleJosh Fester commented on Customer Login via API
We decided to use a different platform because of this. We can't afford to pay for Shopify Plus just to allow user logins
View ArticleJesse Hernandez commented on Where are Metatags for Product pages?
Hello, I am trying to add a custom metafield to our products so we can have a field similar to the description_tag, but would be a field to enter instructions on how to use the product. Should I use...
View Articlethe_program commented on Order data does not include line item's "Barcode" field
Bump. This is pretty crucial - SKUs might not always be unique enough, and not having Barcode/UPC adds an extra layer of difficulty in interfacing Shopify API with other APIs
View ArticleHjalte commented on "error from gateway: you do not have permissions to make...
Me too. I get it all the time.I am not sure if it has anything to do with the new checkout, but I too updated to that not so long ago.This is a HUGE issue!
View ArticleHunkyBill commented on Order data does not include line item's "Barcode" field
I have been pulling it from the Variant which is an extra API call but hardly qualifies as making things difficult to communicate with other API's. So what if you have to make a call to get it? You are...
View Articletax_lines collection missing in line_items for some POS orders. Always...
I am a developer for a company that has an application available in the Shopify app market. We are having some difficulty integrating our application with Shopify POS generated orders. It would appear...
View Articlethe_program commented on Order data does not include line item's "Barcode" field
Well, I guess that's another nightmare I'll encounter while on this integration quest :) Am currently considering just storing a cache of variants with redis or some such.
View ArticleHunkyBill commented on Order data does not include line item's "Barcode" field
Been there.. done that. Variants are pretty low-level to deal with and do introduce "issues". The main problem with a cache on Redis is keeping it from getting stale. Every single time a merchant so...
View Articleno-js class shows in ie9 and ie10 by hehe
Hi everyone. From my understanding, Modernizr is supposed to remove no-js file to js if javascript is supported. I tested my store in ie9 and ie10 and it shows no-js. However, when I removed protected...
View ArticleJason commented on no-js class shows in ie9 and ie10
Does Shopify support IE9/IE10?Yes. Whether your code does or not is something else entirely.
View Articlehehe commented on no-js class shows in ie9 and ie10
We've tried using a blank html file with our .js file and it works 100% of the time in ie. However, it seems to be broken when we added to our shopify store. What do you think is the cause?
View ArticleJason commented on no-js class shows in ie9 and ie10
Impossible to say without seeing it in action. Are you sure you've linked up the scripts correctly? Maybe Modernizr is not even loading...
View Article