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

learn more… | top users | synonyms

7
votes
4answers
504 views

Shopify + Ubuntu 12.04LTS + Faraday issue = OK to use older OpenSSL?

I'm using Ubuntu 12.04LTS Desktop to develop a Shopify App (using the shopify_app gem), and I ran into this problem when processing the callback URL. Faraday::Error::ConnectionFailed (Connection ...
6
votes
2answers
4k views

PrestaShop vs. Shopify [closed]

I have seen several Questions comparing different ECommerce CMS's: Prestashop compared to Zen-Cart and osCommerce Magento or Prestashop, which is better? Best php/ruby/python e-commerce solution I ...
6
votes
3answers
668 views

Ecommerce Site Solutions: to pay or not to pay?

So I am trying to make a decision for a client about which Ecommerce Framework to use to turn their front-end design into an operational store with 2-300 items, inventory control, backend to to manage ...
6
votes
3answers
877 views

Shopify Theme with Compass and Sass

Does anyone have a workflow for developing Shopify themes with Compass and Sass? I am really close, I just need to figure out how to not make Sass barf on the CSS liquid tags. Here's what I've got: ...
5
votes
1answer
505 views

Updating inventory quantities using the Shopify API

I'm trying to update products using the Shopify API. Here's a sample XML request to update the title, weight and inventory of a product: <?xml version="1.0" encoding="UTF-8"?> <product> ...
5
votes
2answers
393 views

Get shopify Metafields for products in one call

I have been trying to get metafields for over 100 products and that means I have to make separate 100 api calls for each product. If there is a way to grab all metafields for all products just in one ...
5
votes
0answers
99 views

Shopify Initial Install Snag

I've sort of hit a wall with my initial install of my app into a test store in order to get the demo app up and running. I've followed the tutorials to the letter, the shopify_app generator generates ...
4
votes
5answers
2k views

How do I set up a session value in Capybara?

I am developing an app for Shopify and I want to do integration testing. I need to be able to store some values in the session variable, so that authentication works. How could I do that? I use ...
4
votes
3answers
267 views

Fetching all of a single customer’s orders on Shopify

Is there a way to get at all of a customer's orders on Shopify? For example: o = ShopifyAPI::Customer.find(…).orders
4
votes
3answers
255 views

jQuery Flyout Menu. Breaking an element out of its parent

I'm working on a Shopify project. I am not the designer. I need to make a flyout menu for the shop. The problem is two fold. First of all, the flyout needs to extend to the bottom of the viewport. ...
4
votes
2answers
556 views

Unable to receive a permanent access token for my Shopify App

I'm following the Shopify instructions to get a permanent token for a particular app/shop combination (http://api.shopify.com/authentication.html). I'm able to get the temporary token and then use a ...
4
votes
1answer
141 views

Shopify landing_site Order Attribute

I have a client that is asking for pretty detailed information about how the landing_site attribute of an Order resource works. The documentation here says that this is set to the first page that ...
4
votes
1answer
231 views

Shopify app login issue

I have switched from legacy to oauth2 authentication on a Shopify app. Now, whenever I visit the app from a stores admin page (My Apps -> App) it redirects me always to the login page instead of ...
4
votes
2answers
193 views

How to delete Shopify Webhooks made thru Shopify API?

I'm having trouble deleting Webhooks that I created thru the Shopify API. To create the webhook, I used this code in RoR: webhook = ShopifyAPI::Webhook.create(format: "json", topic: "orders/create", ...
4
votes
1answer
183 views

Changing line item properties on cart in Shopify

Is it possible to change line item properties after they have been added to the cart? (Either via a normal form submission, or via AJAX?) I've tried a POST to /cart/change with a ...
4
votes
1answer
218 views

Shopify: Problems Getting OAuth Access Token

I've retrieved the authorization code in Step 1 of OAuth without a problem, but for the life of me I can't complete a post to get the access token. I always get the same error: content: ...
4
votes
1answer
486 views

Applying a discount code to a specific product in Shopify

I've been working on setting up a Shopify store. One major feature they don't have built in is being able to provide a discount to a specific product, even though it looks like people have been ...
4
votes
0answers
275 views

Define element.style in shopify .liquid theme code [closed]

Jquery slideshow not working. I tried to override the "default" container width in the "NEW STANDARD" shopify theme. the default MAX width was 884 px. My client wanted to expand the entire site width ...
4
votes
1answer
102 views

Asset cache time on Shopify servers

When editing a custom .css.liquid file that is not automatically set up by Shopify and cannot be placed in a page (since it does not have access to Shopify's Liquid templating system), I find that it ...
3
votes
3answers
319 views

Minimum knowledge for Homegrown Ecommerce Site

I am a relative novice to professional web development and design. One of my clients has requested that I set up an E-commerce site to sell their luxury purses. I have some pretty solid experience ...
3
votes
1answer
268 views

How to get url for product page for shopify shop using API

I checked out shopify product API but result doesn't seem to return product page URL. The URL looks like resulted after some transformation on the title. Is there reliable well defined logic for this ...
3
votes
1answer
1k views

SSL_connect error when accessing Shopify API with rubygem

I'm having trouble accessing the Shopify API using the shopify_api gem. Here's what happens: >> require "shopify_api" #=> false >> ShopifyAPI::Base.site = ...
3
votes
1answer
83 views

Retrieving shopify Shop object?

I feel like I'm missing something extremely simple here. So i have the authentication session, and I essentially want to load the current Shop object to access somethings, like the email address, ...
3
votes
1answer
952 views

Shopify API - add to basket

I'm thinking of using Shopify to manage my shop. I need to add the products to the website with the API. http://api.shopify.com/ I can get the products and stocks with this API call : ...
3
votes
4answers
1k views

Python (Django) Shopify API Client — For a Beginner

I have a requirement to build a client for Shopify's API, building it in Python & Django. I've never done it before and so I'm wondering if someone might advise on a good starting point for the ...
3
votes
1answer
125 views

Shopify / Multiple tracking numbers per fulfillment

Using the Shopify API, I am able to successfully pull down orders from a shop, and also post fulfillments to that shop. However, when I update that fulfillment with a tracking number(s), I can't ...
3
votes
1answer
362 views

Shopify_api gem install 403 ActiveResource::ForbiddenAccess in HomeController#index

I just installed the shopify_api gem and generated a placeholder app. Once I visit localhost:3000 and enter my stores url I get the following in in HomeController#index error: ...
3
votes
1answer
2k views

centering body and big slider

I've managed to uncenter my body while trying to position my slider in the background so that it is also centered and so that it remains centered even when the window is resized. The site is live ...
3
votes
1answer
370 views

Fancybox pop-up and cookies not working

I have been working on a shopify site to install a form through fancybox, while using cookies to only show on the first visit. I am having issues getting fancybox to appear on load of the page, but ...
3
votes
1answer
116 views

Request for Shopify API to allow creation of Customers and Orders

I would just like to check if there is any update on when the Shopify API will have the ability to create orders? Currently we can only retrieve, edit and delete orders. Is this on the roadmap (and ...
3
votes
2answers
1k views

Modernizr causes errors with jQuery Isotope

I'm trying to add Modernizr to this page: http://www.alternativeradio.org/pages/test. Modernizr works fine and does its job on other pages of this site. But on this page, which uses jQuery Isotope, ...
3
votes
1answer
212 views

Font-awesome icons turning to garbage in .liquid files

I am attempting to use font awesome with Shopify and less. I compile my less file into css and the following icon is added. .icon-caret-down:before { content: "\f0d7"; } I then rename my css ...
3
votes
0answers
70 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 ...
3
votes
2answers
56 views

How can I create a list with previous ordered products in Shopify?

Is there any way to create a list of previously ordered items, with images as well, in Shopify? Basically what I'm after is a list on the front page of 3 items that were previously purchased by the ...
3
votes
1answer
81 views

Shopify XML API response - invalid element name: 3DSecureStatus

When querying Shopify transaction data (from the python api client) for transactions involving SagePay, we're receiving an error when the client attempts to parse the returned xml: ...
3
votes
1answer
2k views

getaddrinfo: nodename nor servname provided, or not known (SocketError)

I'm developing a Shopify theme and I'm using https://github.com/Shopify/shopify_theme to update my files into Shopify. Unfortunately, I can't get it to work... When I try to upload/update a file, I ...
3
votes
2answers
62 views

Shopify gem: is there a way to retrieve the terms of service for a store?

I took a look at the documentation page, but it looks like the terms of service doesn't come back when you load up a store through the API. Is it possible to retrieve this?
2
votes
3answers
724 views

How do I make the carousel automatically scroll in this Shopify theme?

I have a carousel in this Shopify theme, and i am trying to edit it to make it automatically scroll to the next slide every 5 seconds (instead of having to click through to the next slide). Here is ...
2
votes
4answers
857 views

shopify navision

I’m looking for answers regarding Shopify and Navision. We are considering switching our current webshop host to Shopify. How ever – one important thing is, that we can make Shopify work directly ...
2
votes
2answers
112 views

Shopify XML Post in PHP

I am having trouble posting XML data using PHP and Curl to Shopify. I have: $xml = '<?xml version="1.0" encoding="UTF-8"?><variant><id ...
2
votes
1answer
352 views

Adding 20% to product price via Javascript in Shopify

There is probably a simple answer to this that someone can help me with but I'm not that great with Javascript. Basically in Shopify I've set up prices to be displayed +20% with one of their liquid ...
2
votes
2answers
154 views

Shopify API - ScriptTag dependency management?

I have a Shopify App that adds a ScriptTag via the API right after installation. The script depends on jQuery and the Shopify jQuery AJAX library. I'd like to avoid forcing merchants to edit multiple ...
2
votes
1answer
249 views

How is is the asset URL generated for the Shopify CDN?

Assume I have an image uploaded to a store on Shopify called 'logo.png'. In a liquid template I can generate a URL for it like this: {{ 'logo.png' | asset_url }} This generates a URL such as ...
2
votes
1answer
138 views

Creating a new product with image using the shopify_api Ruby gem

Shopify have a RESTful API and a handy shopify_api ruby gem that I already use for updating inventory levels. Today I have to do something new, creating a new product with image, and I'd like to use ...
2
votes
2answers
168 views

What is a well rounded ecommerce platform that wont take years to master?

I am a Web Developer student still in uni, hoping to start my own business in the future. I have built and deployed several static websites, and have recently built and deployed a couple of WordPress ...
2
votes
3answers
175 views

Shopify If in collection then display this

I am trying to write a simple if statement, but always struggle with shopify's system. Essentially I want it to do this: {% if collection.product == 'discontinued' %} This Product is Discontinued. ...
2
votes
2answers
140 views

Clarification on valid values for Shopify API Product Variants

Question about the valid values for some attributes of product variants. Specifically there is confusion around the variant inventory_management property and the fulfillment_service property. For ...
2
votes
2answers
325 views

Shopify API: Create a Promotion?

Using the Shopify API, is there a way to creation promotions for your store? If not, is there a way to programmatically create promotions in Shopify? (short of using CURL posts to the admin) That ...
2
votes
1answer
91 views

Querying for Customers using the API

Using the command line shopify application include ShopifyAPI Customer.first(:params => {:query => "email:foo@fizz.com", :fields => "email"}) => ...
2
votes
2answers
72 views

what are the steps to using ruby gem guard-shopify

I am currently creating a theme on Shopify and found a ruby gem called guard-shopify. I am struggling to use the gem. It is installed and i got to the point of adding the api key and secret password ...

1 2 3 4 5 13