Justin Stern commented on shop/update webhook triggers
For what it's worth I see the same behavior. I've considered querying my background job processor (sidekiq) and not enqueuing a job if it already exists, so as to cut down on the duplicates, but since...
View ArticleReamaze commented on EASDK: app path prefixed by '/admin' gets removed
Hi Chris,Thanks for the response. It would not be easy or practical for us to rename our routes unfortunately, since a majority of our app lives behind that route and our usage beyond the Shopify app...
View ArticleHappy kumar commented on Webhook on COD order?
Hey Shopify experts,My issue is that i want to show the payment gateway COD only when the cart price is above some certain order amount.Can you please suggest how to configure this ?your suggestions...
View ArticleDXD commented on Pre-Sales with BrainTree gateway
I looked at Celery but was not clear on if I would be just signing up with them or with Shopify too.My concern was SHopify wants 2.0%, celery wants 2.0% then BrainTree wants 2.9% + .30 all per...
View Articleawd commented on Create, fill and order a card by rest api?
You will want to use the JSON end-points instead of those XML end-points (just replace .xml with .json). We want all app developers using JSON when possible.You might be able to use the AJAX...
View Articleawd commented on Installing Ruby Gem + A Few General Questions
You can setup one or many metafields (check the API docs) on each individual custom collection, or you can build it out in liquid for each custom collection. Your theme could use the collection name to...
View ArticleJamie commented on Pre-Sales with BrainTree gateway
We have plenty who use both in tandem. These are two separate transactions. Celery pre-orders happen within their system, ready to ship items happen in Shopify. You wouldn't be effectively doubling...
View ArticleYan commented on Refused to Display
Ok.. so the issue I was facing yesterday was due to a before_filter (I'm using Rails) that ran before the shopify_session around filter. So making sure the around_filter triggers first, and having my...
View ArticleDXD commented on Pre-Sales with BrainTree gateway
So Celery is it's own store front?I know the auth can't last 30+ days that's fine. I just want to make sure that when it comes time to ship I can charge the card so if Shopify stores this information...
View Articleawd commented on How to update a variant using PUT method? Ruby on Rails 2.3.8
I haven't been able to reproduce these errors. Can you include a GIST of the entire script here?The original post also has a few errors, where you call products.first.variants.first, but are not...
View ArticleWhy do I get a "Required parameter missing or invalid" when trying to create...
I'm trying to create a collection using the API but I keep getting a "Required parameter missing or invalid" error.This is what my code looks like:require 'curb' payload = { 'custom_collection' =>...
View ArticleMaarten van Grootel commented on Why do I get a "Required parameter missing...
We're receiving it as a string {"{\"custom_collection\":{\"title\":\"Test\"}}"=>nil}so something is wrong with your Post library or Headers (Content-Type and Accept are required)
View ArticleNarek Aramjan commented on Why do I get a "Required parameter missing or...
Thanks a lot. For whoever is interested, here's the working code:require 'curb' require 'json' payload = { 'custom_collection' => {'title' => 'Test' } } c =...
View ArticleVarun Gupta commented on Create, fill and order a card by rest api?
Hi awd!Further to Florian's question, is it possible for me to build a custom checkout flow (that links directly with an external payment processor but stores and pulls user data from Shopify) and then...
View Articleawd commented on Create, fill and order a card by rest api?
Varun, likely, but I wouldn't recommend that.
View ArticleSDK javascript causing "The page you’re looking for could not be found" error...
The app is called up fine in a new page if I do not include the following javascript as published in Shopify documentation.<script...
View Articleawd commented on Search API on SKU returns 501 Not Implemented
What is the shop you are performing this query against?
View Article[API, BUG] Adding product by Denis Shiryaev
Hello!Using API I am load lists of products to stores. Sometimes API is working properly and for uploaded product returns its ID, creation time, etc. But sometimes it is return product with NULL values...
View ArticleRockChromaticRyan commented on How do I run a test purchase on shopify...
Okay I will take a look thanks guys!
View Article