Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Shopify for Designers Workshop
Search
Keir Whitaker
March 14, 2014
Technology
1
120
Shopify for Designers Workshop
This deck from the Second Wednesday, 12th March 2014
Keir Whitaker
March 14, 2014
Tweet
Share
More Decks by Keir Whitaker
See All by Keir Whitaker
DotYork Workshop
keirwhitaker
0
72
Grow your web design business with the Shopify Partner Program
keirwhitaker
1
240
C4DI Presentation: The Shopify Economy
keirwhitaker
1
340
A Pragmatists Guide to Making your Side Projects Pay
keirwhitaker
3
160
An Afternoon with Shopify - Brooklyn, October 2013
keirwhitaker
0
67
Building Online Businesses
keirwhitaker
0
110
From side project to business (is easier than you think)
keirwhitaker
0
79
Other Decks in Technology
See All in Technology
Claude Cowork Plugins を読む - Skills駆動型業務エージェント設計の実像と構造
knishioka
0
270
Agentic Software Modernization - Back to the Roots (Zürich Agentic Coding and Architectures, März 2026)
feststelltaste
1
170
JAWS DAYS 2026 CDP道場 事前説明会 / JAWS DAYS 2026 CDP Dojo briefing document
naospon
0
180
マルチロールEMが実践する「組織のレジリエンス」を高めるための組織構造と人材配置戦略
coconala_engineer
3
430
名刺メーカーDevグループ 紹介資料
sansan33
PRO
0
1.1k
白金鉱業Meetup_Vol.22_Orbital Senseを支える衛星画像のマルチモーダルエンベディングと地理空間のあいまい検索技術
brainpadpr
2
220
AIエンジニア Devin と歩む、自律型運用プロセスの構築
a2ito
0
700
Oracle Cloud Infrastructure:2026年2月度サービス・アップデート
oracle4engineer
PRO
0
220
型を書かないRuby開発への挑戦
riseshia
0
190
us-east-1 に障害が起きた時に、 ap-northeast-1 にどんな影響があるか 説明できるようになろう!
miu_crescent
PRO
1
650
わたしがセキュアにAWSを使えるわけないじゃん、ムリムリ!(※ムリじゃなかった!?)
cmusudakeisuke
0
140
Kaggleの経験が実務にどう活きているか / kaggle_findy
sansan_randd
5
790
Featured
See All Featured
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
17k
Game over? The fight for quality and originality in the time of robots
wayneb77
1
130
Become a Pro
speakerdeck
PRO
31
5.8k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.7k
Lightning Talk: Beautiful Slides for Beginners
inesmontani
PRO
1
460
It's Worth the Effort
3n
188
29k
Tell your own story through comics
letsgokoyo
1
830
Building Adaptive Systems
keathley
44
2.9k
Building the Perfect Custom Keyboard
takai
2
710
Hiding What from Whom? A Critical Review of the History of Programming languages for Music
tomoyanonymous
2
500
How to Get Subject Matter Experts Bought In and Actively Contributing to SEO & PR Initiatives.
livdayseo
0
80
Balancing Empowerment & Direction
lara
5
930
Transcript
Shopify for Designers - Nottingham 12.03.2014
@shopify #shopifyu
Who am I?
@keirwhitaker
[email protected]
keirwhitaker.com
What is Shopify?
Easy to use theme based hosted ecommerce platform
Founded 2006 Ottawa, Canada ~350 employees
90,000+ stores 2012 $742m GMV 2013 $1.5bn GMV
Shopify Payments POS
100% Free for Designers to use
Build a Business for Designers
Opportunities for Designers
Shopify Partners
Shopify Experts
Sign up to the Partner Programme bit.ly/1lOPsAg
Example Stores
A Book Apart
United Pixel Workers
Whipping Post
Greats Brand
Pure Fix Cycles
Best Made Co.
Hard Graft
Big Cup Little Cup
Hiut Denim
Online Admin
Dashboard
Ecommerce
Blogs & Pages
Themes, Apps & Settings
App Store
shopify.com/apps
shopify.com/apps
80/20 Revenue Share
Theme Store
shopify.com/themes
shopify.com/themes
In 2012 50% of theme designers made $20k+ (many made
$100k+)
70/30 Revenue Share
Key Concepts
Products
None
None
Product Admin
Collections
purefixcycles.com/collections
purefixcycles.com/collections/50mm-wheelsets
purefixcycles.com/collections/50mm-wheelsets
Collections Admin
Filtering Collections
Product Tags
purefixcycles.com/collections/drivetrain/parts+white
Features
Image resizing Navigation lists CDN for all assets Page templates
Redirect module Discount engine Gift cards
Themes
HTML CSS JS Liquid
assets -- site.css.liquid -- site.js.liquid config layout -- theme.liquid snippets
-- footer.liquid -- header.liquid templates -- 404.liquid -- article.liquid -- blog.liquid -- cart.liquid -- collection.liquid -- index.liquid -- list-collections.liquid -- page.liquid -- product.liquid -- search.liquid
/thisisntarealurl → 404.liquid /blogs/<blog-name>/<article-id-handle> → article.liquid /blogs/<blog-name> → blog.liquid /cart
→ cart.liquid /collections → list-collections.liquid /collections/<collection-handle> → collection.liquid /collections/<collection-handle>/<tag> → collection.liquid / → index.liquid /pages/<page-handle> → page.liquid /products → list-collections.liquid /products/<product-handle> → product.liquid /search?q=<search-term> → search.liquid
Birthday Suit
Liquid
Output ! {{ product.title }} ! {{ product.description }} !
{{ product.handle }}
Filters ! {{ product.title | upcase }} ! {{ 'logo.png'
| asset_url | img_tag: 'Site Logo' }} ! {{ 'capitalize me' | capitalize }} ! {{ article.published_at | date: "%a, %b %d, %y" }} ! {{ 'style.css' | asset_url | stylesheet_tag }}
Logic ! {% if product.available %} Show Add to cart
button here {% else %} Display message! {% endif %}
Loops ! {% for image in product.images %} <img src="{{
image | product_img_url: 'medium' }}" /> {% endfor %}
Layouts ! <html> <head> {{ content_for_header }} <title>{{ shop.name }}
- {{ page_title }}</title> {{ 'screen.css' | asset_url | stylesheet_tag }} </head> <body> {{ content_for_layout }} </body> </html>
product.liquid
theme.liquid
header.liquid
Theme Settings
Theme Settings
settings.html
Theme Settings ! <img src="{{ 'home-page-hero-small.jpg' | asset_url }}">
Workflow
Partners Dashboard - Dev Shops
Sublime Text 2 + Liquid Syntax
apps.shopify.com/desktop-theme-editor
Upload via admin
Time for a break
Task 1 Products & Collections
Login to your dashboard and create a dev shop
Add 3 products
Add more than one product image to each product
Add a variant to each product
Create two collections, add a collection image and description and
finally add your products to them
Task 2 Liquid
upload “shopify- birthday-suit” to your dev shop and activate it
Using the online theme editor add in the name &
description of your store (using the variable "shop") to the footer in theme.liquid
Using Liquid add code to output the "collection image" for
each collection list-collections.liquid
Using Liquid add code to output the "featured image" in
product.liquid
Now change this to add in the first image in
a “large” format and the rest as thumbnails
Task 3 Snippets
Create a new snippet called product- ***.liquid ! *** =
one of your products
Copy in the contents of product.liquid and change one element
Add in a liquid logic statement to check for your
products handle and show your new snippet if true
Thank You - Questions?
[email protected]
/ @keirwhitaker