Mitchell Podlaha commented on How to pass user status
In case if I'm not clear, I need to make sure that when user checkout..... when they reach the thank you page (where the receipt confirmation number will be issued)For guest checkout user... it will...
View ArticleApp preferences url - include querystring by Aran Reddy
Hi,I am currently building my fist app for shopify and am having some trouble with understanding how the app preferences works.Currently my apps preferences link points to...
View ArticleCan I add scripts/tracking pixels programmatically through my app on the...
One way of adding scrips/pixels is from the admin panel. But, lets say, I am developing some app and I need to add some pixel on the checkout page, can this be done through my app itself?
View ArticleChris Saunders commented on Can I add scripts/tracking pixels...
You can add them using ScriptTags. If you want your scripts to be loaded in the checkout they must be served over https. You should be able to create a schemeless ScriptTag (//foo.com/bar.js) and the...
View ArticleRuby ShopifyAPI current customer by Sebastian Niezgoda
Hello,Is there a way to find out the email of the currently logged in customer via the ShopifyAPI (Ruby shopify_app gem)?Is this documented anywhere? I'm finding nuggets of what I need here and there...
View ArticleNate commented on Ruby ShopifyAPI current customer
Hey Sebastian,There is no support in the REST (and therefore Ruby) API to get the information of logged in customers.You will have to get all of the products to get all of the product_types.
View ArticleRefused to Display by jahbrewski
Shopify devs,I am trying to set up a Shopify app utilizing the embedded app SDK. Unfortunately, when I attempt to view my app from the admin panel I receive an error: "Refused to Frame... because it...
View ArticleSebastian Niezgoda commented on Ruby ShopifyAPI current customer
Thanks for the quick response. I take it that no REST support means no support no matter what API, correct?Can you point me to any documentation your team likes to use internally?Thanks!
View ArticleNate commented on Ruby ShopifyAPI current customer
That's correct, there is no support in any API.The API documentation can be found here: http://docs.shopify.com/apiThanks,Nate
View ArticleNate commented on Refused to Display
Hey jahbrewski,It looks like the response from that URL is including the header 'X-Frame-Options: SAMEORIGIN'. This header is used to indicate to web browsers that the response should not be rendered...
View ArticleAngela Barotto commented on Error related to certificate when trying to...
Yes Gino!!My problem was only when the certificate is secured by the Secure Hash Algorithm 2 (SHA2) family of hashing algorithms. I applied this hotfix from microsoft...
View ArticleAdd products to cart via AJAX or HTML [PROBLEM] Rails APP by Duncan Griffiths
Hello, I have a problem, I need to add from my rails application products to the shopping cart, but in doing so saw ajax with the information in this link...
View Article[bug?] collects API contains product which doesn't exist by Marius Andreiana
Hello,Just found an issue with a clients' shop:Listing the collects in this collection idhttps://streetmoda.myshopify.com/admin/collects.json?collection_id=16253037includes this...
View ArticleHow to recognize gift cards in product list API? by Marius Andreiana
Hello,What's the most reliable way to recognize which products are Gift Cards in product list API?By looking at all variants, and see if they have this property?"fulfillment_service": "gift_card"Would...
View Articledjokage commented on CakePHP Library error on App install "Call to a member...
for this "Fatal error: Call to a member function findByShopDomain() on a non-object in"you need to create your database named Shops and the related model.
View ArticleMaarten van Grootel commented on [bug?] collects API contains product which...
Hello Marius,Yes, this is a rare bug. It sometimes happens that a product is deleted but the deletion of the accompanying collect(s) fails. We're investigating the issue to see under what circumstances...
View ArticleHow to get all the Variant Ids at the time of checkout and make an ajax call...
I have to get all the variant ids at the time of checkout. I did something like this:1. Adding script through API.ShopifyAPI::ScriptTag.create({event: "onload", src: "https://myscript.js"})2....
View Article