Images not shown in IE by Big Van Studio
I am going crazy. I have an App to generate new products. The images generates by the app is shown in Firefox, Safari, Chrome, Opera.... but not in IE.For example, this...
View ArticleJason commented on Images not shown in IE
Probably because the image is not a jpeg - even though that's what the file extension says.
View ArticleError 400 when try to create orders containing billing_address and/or...
HiWe have a big problem when we try to create an order with Orders API that contains the id of an existing customer and billing_address and/or shipping_address data.This is the JSON posted from our...
View ArticleLaurentiu Gheorghiu commented on Error 400 when try to create orders...
found the error: billing_address and shipping_address are not Arrays, but Objects. After correction it works jus fine
View ArticleLaurentiu Gheorghiu commented on billing_address field issue: Are there...
HiWe had the same problem and we found the error in our case, but I think it same in yours:billing_address and shipping_address are not Arrays [ {...} ] , but Objects {..} . (notice the...
View ArticleBig Van Studio commented on Images not shown in IE
Thanks a lot, Jason!! Problem solved!
View Articlecan't upload images while creating a product with PHP by Dean
Hi , I'm learning to develop the shopify APP throgh examaple from here:http://www.shopify.com/partners/blog/17056443-how-to-generate-a-shopify-api-token#Here is my code$add_data = array(...
View ArticleRamesh commented on How to get staff membes list using App & API
Thanks for replay..Is this possible i can get staff members in front end using APP or API? or is there any other way?Thanks again,Ramesh Rabari
View ArticleRamesh commented on How to get staff membes list using App & API
Can you please give me alternate way for getting the staff member list.?
View ArticleHunkyBill commented on Is it possible to hook into the existing admin's...
One API call can retrieve 250 records. Since you are developing an App, it is your responsibility to architect it too. If you know your customer will have a lot of records, say 1,000,000 orders, you...
View ArticleNick commented on Is it possible to hook into the existing admin's...
So there's no way to simply do: ShopifyAPI::Product.find([1,2,3,4])?I must do:ShopifyAPI::Product.find(1) ShopifyAPI::Product.find(2) ShopifyAPI::Product.find(3) ShopifyAPI::Product.find(4)And then...
View ArticleHunkyBill commented on Is it possible to hook into the existing admin's...
Nope. ActiveResource is not setup for adhoc query by ID and so you have to think deeper and harder about solving your issue. Note that is not peculiar to Shopify API. It is rare you will find a REST...
View ArticleNick commented on Is it possible to hook into the existing admin's...
Yeah at this point I guess I'll just do :all and page through it, then work on my local copy with outgoing API calls on save. It just seemed like a lot of extra book keeping to keep things sync'd and...
View ArticleHunkyBill commented on Is it possible to hook into the existing admin's...
Who knows... ActiveResource has been around for a decade or more... I am sure there are plenty of old blog articles detailing why that pattern is not supported. At the time ActiveResource was a theory...
View Articleorders.json source_name query by Tony Quick
The API docs for orders.json do not show how orders can be retrieved for web vs pos source_names. Is it supported? It would be much easier than having to filter through the pos orders when only web...
View ArticleNick commented on Is it possible to hook into the existing admin's...
ActiveRecord will happily take Foo.find([1,2,3]) and produce SQL that's very fast most of the time. I never used ActiveResource before, but isn't it just calling ARecord under the hood?
View ArticleHunkyBill commented on Is it possible to hook into the existing admin's...
Do not confuse Active Record with Active Resource... two competely different beasts. One is not the other with minor changes... note that. Read up on Active Resource is what I should have said. Of...
View ArticleEmbedded App Installation redirects to admin dashboard by hehe
Currently, after installing my Shopify embedded app, Shopify redirects users to their app dashboard instead of my website. Is there a way, after a user gives the app permission, to redirect them to my...
View ArticleNeed help with partial render with app proxy! by Satoshi Nakamoto
Hi,I am using app proxy to render dynamic content from external source (our own server).But I want to render partially into the existing pages/theme and not having an independent single page.How can I...
View ArticleShipping Wiz commented on Need help with partial render with app proxy!
Haha, Satoshi Nakamoto...really!
View Article