Sebastian Szturo commented on Shop's SKU Count...there must be an easier way
Sadly there is no api endpoint for the variants count. You could loop through the paginated variants.json instead of through all the products. Depending on the amount of products in your shop, it might...
View ArticleAksel B. commented on Currency switcher displays symbol. How do I prevent that?
Hi RemiB. Your input helped. I found out that I needed to make the changes in jquery.currencies.min.js.Now it almost displays correct. But it still doesn't use "." as a thousands seperator. How can I...
View ArticleHunkyBill commented on Shop's SKU Count...there must be an easier way
Since there is no such thing as "Give me a count of variants (SKUs)", and the fastest API method is to get all the products in a store. Since you get 250 per API call, this is relatively efficient, but...
View ArticleRoms94 commented on Server-to-server Invoice Retrieve
Hey Sebastian,thanks for your replyYeah, actually, I hadn't seen that there wasn't invoices (natively) in Shopify.So my question should be instead: "do you know a module that creates invoices and make...
View ArticleDavid commented on Dashboard endpoints failing (link lists, shipping, files,...
I'm very disappointed in Shopify's responses in this thread. I just started using ShopifyFD, but it is already clear that most or all of this functionality should be officially supported by Shopify.
View ArticleRails - Shopify_api by kilua gank
I am creating an app for shopify using rails. I wondering, is there any way that I can get all the products from the merchant in batches? From this wiki...
View ArticleSebastian Szturo commented on Server-to-server Invoice Retrieve
There is an app from Shopify called "Order Printer": https://apps.shopify.com/order-printer You can create invoices in there and export them in PDF instead of printing them. Thats a manual solution, if...
View ArticleRails - shopify_app by kilua gank
Hi,Based on the readme of this gem/pluginit suggested to create a model and assign it into ShopifySessionRepository.storage rightthe model could be something like this class Shop <...
View ArticleRoms94 commented on Server-to-server Invoice Retrieve
Thanks again Sebastian but I think this doesn't fit with my "server to server retrieve-able" need, does it?Or even a batch CSV export could fit with my need. Do you know another module that give this...
View ArticleRunning the shopify_app on windows machine by Manisekaran Narayanan
I could not get the shopify_app available at (https://github.com/Shopify/shopify_app) to run on windows. Once you follow all the installation instruction provided on the github and run the rails...
View ArticleBen Cox commented on Do fulfillment API calls automatically trigger a...
In each case the customer notification can be toggled by passing the notify_customer parameter like so:{ "fulfillment": { "tracking_number": "123456789", "notify_customer": true } }
View ArticleBen Cox commented on Query Results Not Doing As Expected
A good way to test these sorts of GET queries is actually just doing it in the browser - makes it very easy to confirm behaviour. That said to get what you're looking for you just need to do a GET to...
View ArticleBen Cox commented on Orders created via API do not count into customers...
I believe the total spent attribute on a Customer uses the total sum of all Transactions associated to Orders belonging to the Customer record. If the Orders you're creating through the API don't...
View ArticleBen Cox commented on Google Map App inside Shopify
Depending on how things are implemented you might be able to use a Script Taghttp://docs.shopify.com/api/uiintegrations/scripttag
View ArticleBen Cox commented on Rails - Shopify_api
GETs to the Product endpoint are paginated and limited to 250 records per call (default is 50). What you can do is the following:ShopifyAPI::Product.find(:all, :params => {:limit => 250,...
View ArticleBen Cox commented on Direct link to an .xml file
You should be able to find it using our Asset resource:http://docs.shopify.com/api/asset#indexYou can either do this call for all assets:GET /admin/themes/#{id}/assets.jsonOr this to receive a specific...
View ArticleBen Cox commented on New webhooks are coming in as JSON instead of XML
It does look like new webhooks are defaulting to json. Going forward you'll want to ensure you specify the format just to be sure. In the meantime I'm going to look into whether this is a bug or if our...
View ArticleBen Cox commented on Older line items do not have variant id or product id
This sounds pretty odd, and I'd need to take a look at the actual orders to figure out whatsup. Can you shoot me an email at ben@shopify.com with the Order ids that you're getting?
View ArticleChris Nagele commented on Shopify theme repository using Git?
Guys, check out http://beanstalkapp.com/shopify for a hosted solution to this exact problem.
View ArticleImage cropping by Samraaj Bath
Our shopify store requires users to upload an image and then crop the image to a specific aspect ratio.Front end wise, everything is figured out; I can easily implement a javascript cropper that will...
View Article