Shopify is an online platform for creating e-commerce sites.

learn more… | top users | synonyms

0
votes
1answer
17 views

How can I test proxy calls in Shopify in development mode?

I signed up for the partner program and created a "Dev Shop" for testing purposes. I have registered an App and configured the proxy settings, but since the App isn't published I can't see how to ...
0
votes
1answer
14 views

Keep form data after errors on basic Shopify contact form

I have added a basic contact form as described in Shopify Documentation. My code: {% form 'contact' %} {% if form.posted_successfully? %} <div class="successForm feedback"> <p>Thanks ...
0
votes
0answers
13 views

Shopify API Variant not being returned with product_id attribute

So I'm using the Shopify Gem to access the Shopify API and noticed that the product_id attribute is not being returned within the response body for a simple ShopifyAPI::Variant.find call. ...
1
vote
1answer
35 views

Dynamically add a product to Shopify cart

I need to add a product which is an extra cost for customer when s/he adds to cart products from different brands. This is due to the fact that we ship products from different warehouses based on ...
1
vote
2answers
42 views

Python Requests Invalid URL Label error

I'm trying to access Shopify's API which uses a URL format of - https://apikey:password@hostname/admin/resource.xml ...
1
vote
2answers
36 views

Shopify - SSL API CALLS do not work from http://

I try to do some AJAX-magic on the landing-page of my shopify-shop using the Shopify AJAX API. But for calling the Shopify AJAX API I have to use SSL, doing something like this: ...
0
votes
0answers
26 views

shopify app (python)Uncaught ReferenceError: require is not defined

with the Shopify API for python i am able to place the script tag in the (client's) store . Problem is i am having two script tags among one is a Require.js. store page's source code (client's ...
0
votes
2answers
28 views

Shopify theme top menu issue, can't get it to fit on one line

Here's the site: http://sawsafetystore-com.myshopify.com/ You can see the menu at the top (Home, Chain Saw Safety, etc.). No matter how much I tinker with the CSS, I cannot get it to fit on one ...
-2
votes
1answer
19 views

i have error like bad request while add product in shopify using api

Following errors has occured: Fatal error: Uncaught exception 'ShopifyApiException' with message 'Bad Request' in D:\xampp\htdocs\cutoutphoto\lib\shopify.php:87 Stack trace: #0 ...
0
votes
1answer
32 views

how to make this call from shopify ? (GET/POST) python

I have to make this call with Standard shopify API (python) https://store.myshopify.com/admin/shop.json what i am getting is : ipdb> shopify.Shop.current() shop(2330215) but : ipdb> ...
0
votes
1answer
29 views

shopify scripttag does not insert script tag to store

with all the proper authentication : these are the results : ipdb> shopify.ScriptTag.find() [script_tag(347035)] ipdb> shopify.ScriptTag.get(347035) {'updated_at': datetime.datetime(2013, 5, ...
0
votes
0answers
13 views

Shopify Product Variant destroy is locked (HTTP code 423)

I'm trying to update existing variants on an product. To do this, first I need to delete all existing variants due to race condition issues on the API side that I won't go into here but are outlined ...
0
votes
1answer
22 views

creating a session with shopify API Error : malicious login (Python)

I am tring to get the Shop detais as well as i have to put a script tag in to the store . Folowing all the standerd API calls i have constructed this : scope = ["write_products", "read_orders"] ...
0
votes
0answers
26 views

shopify script tag not functional on store

following the proper auth from the standard api calls . after making the complete authentication shortname= shopify.Shop.site shortname=shortname[8:-20] ...
0
votes
0answers
16 views

Shopify liquid - wish list not working

I have implemented this: https://github.com/zakhardage/Shopify-Wish-List To get a wish list on my shopify website www.spoiltpets.com Go to any product and click add to wish list (once logged in) ...
0
votes
0answers
19 views

On Shopify, would like to create a custom field for a contact form. The field is not currently within Shopify.

On Shopify, would like to create a custom field for a contact form. The field is not currently within Shopify. Any help would be appreciated. Thanks.
0
votes
2answers
44 views

shopify getting store name to build post url (python)

I am building a Shopify plugin . (Placing a widget in store with SCRIPT_TAG) with following the standard APIs given I have achieved the auth2 setup. now as the shop owner installs it . it need to ...
-5
votes
0answers
22 views

How to develop Shopify app using .net? [closed]

I want to develop shopify app. Language i prefer is .Net. I have below 2 requirements. 1) Take shipping information from front end and generate tracking no. from my app and show to customer. 2) Take ...
0
votes
1answer
20 views

Error Creating Shopify Webhook through the API

I am trying to create a Webhook through the API. When the Customer installs the app (Controller): def init_webhooks topics = ["products/create", "products/update", "products/delete"] topics.each ...
0
votes
0answers
12 views

Can't create product variant through API

Cant seem to create new product variant using shopify api. This is my code: global $shopifyClient; $config['shopify_api_product_price'] = "/admin/products/128671451/variants.json"; $variant = ...
0
votes
1answer
67 views

Shopify mailchimp integration

Before I start, I found this: Some basic Mailchimp API examples required which seems to do what I want, but here's the caveat: The form I have is on Shopify. It's an app that allows clients to be ...
0
votes
0answers
18 views

Evil Black Background rendering issue for Safari 5.0.6

I am trying to ferret out the cause of an unwanted black background rendering only in old versions of safari. Here is the url: http://shop.filthyfarmgirl.com The behavior is very strange! it renders ...
1
vote
0answers
25 views

Shopify randomly gives “not found” errors

I have a script that imports large volumes of products into a Shopify store. I have implemented sleeps throughout the program to prevent spamming the API server, as well as a method to prevent ...
0
votes
1answer
31 views

Shopify Update Cart Total Price On The Fly

I am trying to update the cart total price on the fly. I have tried the shopify cart change or update processes but that seems to be not supporting the price update. Any one knows any way of doing ...
0
votes
0answers
24 views

Shopify Theme Background Issue

For some reason on my site it's cutting the background off even when I have it set to cover. I've tried background-repeat: repeat-y as well and it still cuts off at the same point. I tried using the ...
0
votes
1answer
46 views

Script tag is not showing anything on frontstore in shopify

I have created an script tag using shopify Api $src = "http://localhost/shopifyplugin/shopify.js"; $script = $sc->call('POST', '/admin/script_tags.json', array( ...
0
votes
0answers
38 views

Shopify: Displaying some extra information on product detail page

I want to display some extra information on every product detail (Add to Cart) page of every shop that installs my app on shopify. I want to do this dynamically by my app or using shopify API. I tried ...
0
votes
1answer
55 views

how to display a meta field on product detail page in shopify?

i have a created meta filed using the shopify API call like this: 'POST', '/admin/products/1328/metafields.json', array("metafield" => array('namespace'=>'inventory', ...
0
votes
1answer
23 views

Is there a way to tag or identify specific orders?

Using the webhook api to retrieve orders, I'm wondering if there's some way that the orders can be tagged in some form so I can attribute them to certain objects in a shopify app. The scenario is a ...
0
votes
1answer
27 views

Creating a hidden product

I am trying to POST the contents of request.json to /admin/products.json, but Shopify replies with the contents of response.json. As you can see in request.json, I have specified "published_at" to ...
0
votes
1answer
39 views

Hide Shopify shop behind a paywall

I'm trying to create a shop that requires paid membership to use. I love what Shopify has to offer. Is it possible (with their API or by using an existing app) to force users to purchase a membership ...
0
votes
1answer
30 views

Shopify create radio buttons options for each product

I am developing on Shopify and I am trying to create the ability for the customer to build a computer. But, I cant find way to do this. I want to make it look similar to ...
0
votes
1answer
23 views

How to assign multiple customer tags in Shopify?

I am trying to assign multiple custom tags to a customer who registers for my store in Shopify. Here is what I have so far but it assigns over the first tag with the second one, I need to find a way ...
0
votes
2answers
40 views

forloop.index as a condition in an if-statement in shopify

I'm trying to do something very simple. I wrote: {% for product in collection.products %} {{ if forloop.index = 1 }} Hello World! {{ endif }} {% endfor %} Problem: "Hello World!" ...
1
vote
0answers
29 views

Related Products Shopify Liquid

I'm trying to determine the correct Shopify Liquid syntax for outputting a list of products that match the same tag as the current product. This is to appear in a "Related Products" box on the ...
0
votes
0answers
33 views

Pre-fill form field on Shopify Contact Form from incoming link

hope you can help. I am using the basic Shopify contact form referenced here: http://wiki.shopify.com/How_to_add_a_contact_form_to_your_shop What I want: User is looking at product named 'ITEM-1' ...
0
votes
1answer
26 views

Shopify Customer Account Issue - Users who sign up get 'email already in use' message if account is not enabled

We recently made some changes to the site, that forces customers to create an account before they can purchase a product (we sell digital downloads and now rely on the account area for customers to ...
0
votes
1answer
51 views

Shopify: Can you call the OAUTH2 permission URL without requesting additional permissions?

The Shopify documentation states: Requesting access to a shop with no additional permissions beyond the basics: https://SHOP_NAME.myshopify.com/admin/oauth/authorize?client_id=API_KEY ...
1
vote
1answer
110 views

No Method Error editing Shopify metafield data with ruby on rails via a form

As part of a customisation I'm doing for a Shopify site, I'm trying to write a tool that allows only a specific metafield to be edited. On the index page, I'll be listing various collections, ...
0
votes
2answers
137 views

JQuery Tabs, putting my divs into display:none

I have implemented some tabs into my site to use for product description. Its working, but the text on each tab disappears after 2 secs, something after a count is adding the display:none style to ...
0
votes
1answer
36 views

How can I calculate then display different currencies on a web page?

I'm working on a Shopify site and would like product prices to be viewed in different currencies alongside each other e.g. £123 | $456 | €789 I've read a few methods on Shopify e.g. 'How to Show ...
1
vote
3answers
49 views

User-specific discounted products via Shopify API?

Is there any way to create discounted products that only appear at specific times and places (through the Shopify API)? I've just been creating variants with lower prices, but this is a bit ...
1
vote
2answers
45 views

Shopify api: add a link

I am developing a shopify app. Is it possible to add a new link to the main menu via the shopify API? Thanks
1
vote
0answers
32 views

How are Shopify API order collections sorted when passing in an updated_at filter

This question is very closely related to Sort Order of Shopify REST Collections but the answer for that question was specific to the since_id parameter. My question is what is the expected sort order ...
0
votes
1answer
51 views

@font-face not displaying correctly in site

I have a myshopify site that I am trying to display a font in using @font-face.. but for some reason, the font is not taking effect.. here is what I have: font files in asset folder using myshopify ...
0
votes
1answer
73 views

PHP Shopify integration - variant delete

I’m working on a PHP application integrated to shopify. Basically product information must be sync between the "shop" and application. Inside the products we have variants (similar to sub products). ...
0
votes
1answer
40 views

Shopify display image thumbnails for variant options

I am so stuck trying to find an answer for this and I can't find it anywhere. Yet I have seen it done online. Basically all I want to do is have images show instead of the text. Available finishes: ...
0
votes
0answers
29 views

Modify an existing Fulfillment unexpectedly returns 404 page

I am currently using sandeepshetty's shopify.php plugin on github https://github.com/sandeepshetty/shopify.php The plugin appears to work and the logic is fairly simple. I have tested it using the ...
0
votes
1answer
73 views

Dwolla Custom Payment Buttons: Where does the data go?

I'm currently integrating a Dwolla payment method hack on a Shopify store using a Dwolla button. The explanation of the hack is posted on the Shopify forums here: ...
0
votes
1answer
66 views

Shopify Jquery change the price of product

Hey Im new to shopify and am trying to figure out their API Im trying to add a bunch of checkboxes that will alter the total amount of the product. I have a code that is changing the json class ...

1 2 3 4 5 13