SlideShare a Scribd company logo
1 of 62
Download to read offline
Creating Custom Shopify Themes
presented at general assembly
shopify & growth spark
ross beyeler
Growth Spark Founder
Shopify Design Ambassador
the team
Growth Spark
Some of Our Shopify Work
Tonight’s Agenda
agenda
Working with Shopify
Workshop Setup
Shopify Basics
BREAK
Customizing Shopify
Challenge 1
Challenge 2
Challenge 3
Challenge 4
Q&A
share away!
share with your friends

@shopify
@growthspark
#shopifyu
What is Shopify?
what is shopify?
Easy to use, theme based
hosted e-commerce platform
Founded in 2006
~350+ Employees
100,000+ stores
$4B+ Customer Sales
Working with
Shopify
Shopify is 100% free!
For Designers and Developers
working with shopify
working with shopify
50% of theme designers made $20k+
{many made $100k+}
Workshop
Setup
Join the Partner Program
bit.ly/sfwd-bos
workshop setup
Setup your Shopify Dummy Store
workshop setup
Download the Workshop Content
bit.ly/sfwd-stuff
workshop setup
Shopify
Basics
shopify basics
Managing Content
shopify basics
Products
Collections
Pages
Posts
Navigation
shopify basics
Managing Sales
shopify basics
Customers
Orders
Discounts
Gift Cards
Reports
shopify basics
Managing Settings
shopify basics
Themes
Apps
Settings
Break Time!
presented at general assembly
shopify & growth spark
Customizing Shopify
customizing shopify
Theme Structure
customizing shopify
HTML
CSS
JS
Liquid
Theme structure
customizing shopify
Theme structure
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
customizing shopify
Theme structure
/thisisntarealurl
/blogs/<blog-name>/<article-id-handle>
/blogs/<blog-name>
/cart
/collections
/collections/<collection-handle>
/collections/<collection-handle>/<tag>
/
/pages/<page-handle>
/products
/products/<product-handle>
/search?q=<search-term>
404.liquid
article.liquid
blog.liquid
cart.liquid
list-collections.liquid
collection.liquid
collection.liquid
index.liquid
page.liquid
list-collections.liquid
product.liquid
search.liquid
customizing shopify
Liquid
customizing shopify
Output
{{ product.title }}
{{ product.description }}
{{ product.handle }}
customizing shopify
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 }}
customizing shopify
Logic
{% if product.available %}
Show Add to cart button here
{% else %}
Display message!
{% endif %}
customizing shopify
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>
Shopify Challenges
Add Quantity Box to
Product Detail Page
challenge #1
challenge #1
Adding Quantity Box to Product Detail Page
Go to http://bit.ly/add-quantity-box
In the snippets folder, locate product.liquid.
Copy/Paste snippet code from the workshop file
challenge #1
Snippet Code
<label for=”quantity”>Qty: </label>
<input min=”1” type=”number” id=”quantity”
name=”quantity” value=”1” />
<style>#quantity { padding:5px; width:35px; border:
1px solid #555; }</style>
Add a Short Description
to the Collections Page
challenge #2
challenge #2
Add Short Description to Collections Page
Resources: http://bit.ly/shopify-documents
In the snippets folder, locate product-loop.liquid.
Add the product description tag located in the
workshop folder.
	 <div class=”description”>
	 {{ product.description }}
challenge #2
Add Short Description to Collections Page
Resources: http://bit.ly/shopify-documents
Now using a filter, shorten/truncate to X number
of characters.
	 <div class=”description”>
{{ product.description | truncatewords: 50 }}
</div>
Add Text on Hover
challenge #3
challenge #3
Add Text on Hover
Go to http://bit.ly/shopify-resource
Locate the css and copy from the gist located in
the workshop folder
In the snippets folder, locate the
product-loop.liquid page
5
4
challenge #3
Adding Quantity Box to Product Detail Page
Enclose your image tag within a div with the
class of reveal.
<div class=”reveal”>IMAGE TAG</div>
What do you want to reveal on hover? Example:
product title, product price
challenge #3
Snippet Code
<div class=”hidden”>
<div class=”caption”>
<div class=”centered”>
<p>{{ product.title }}</p>
<p>{{ product.price | money }}</p>
</div><!-- end of .centered -->
</div><!-- end of .caption -->
</div><!-- end of .hidden -->
Add a Stock Level Indicator
challenge #4
challenge #4
Add a Stock Level Indicator
To see the changes, go back to the products page and track inventory.
Create a statement to show an alert when there
is only one product left in the inventory
	 {% for variant in product.variants %}
	 {% if variant.inventory_quantity == 1 %}
	 only {{variant.inventory_quantity}} left!
	 {% endif %}
	 {% endfor %}
presentation
Download our Resources Guide
http://growthspark.com/shopify/
Thank you!
ross@growthspark.com / @growthspark
any questions?
the end!

More Related Content

Viewers also liked

Building an E-Commerce Business with Shopify
Building an E-Commerce Business with ShopifyBuilding an E-Commerce Business with Shopify
Building an E-Commerce Business with ShopifyGrowth Spark
 
SEO with Shopify
SEO with ShopifySEO with Shopify
SEO with ShopifyShopify
 
Shopify (An e-Commerce) PPT
Shopify (An e-Commerce) PPTShopify (An e-Commerce) PPT
Shopify (An e-Commerce) PPTkoushik karthik
 
Growth Strategies
Growth StrategiesGrowth Strategies
Growth StrategiesShopify
 
How to Install Magento 2 [Latest Version]
How to Install Magento 2 [Latest Version]How to Install Magento 2 [Latest Version]
How to Install Magento 2 [Latest Version]M-Connect Media
 
20 Tips to Improve Sales on your Ecommerce Site
20 Tips to Improve Sales on your Ecommerce Site20 Tips to Improve Sales on your Ecommerce Site
20 Tips to Improve Sales on your Ecommerce SiteJosh Levine
 
How Shopify Scales Rails
How Shopify Scales RailsHow Shopify Scales Rails
How Shopify Scales Railsjduff
 
Shopify Retail Tour - Mailchimp Email Marketing
Shopify Retail Tour - Mailchimp Email MarketingShopify Retail Tour - Mailchimp Email Marketing
Shopify Retail Tour - Mailchimp Email MarketingShopify
 
SEO for Ecommerce: A Comprehensive Guide
SEO for Ecommerce: A Comprehensive GuideSEO for Ecommerce: A Comprehensive Guide
SEO for Ecommerce: A Comprehensive GuideAdam Audette
 

Viewers also liked (10)

Building an E-Commerce Business with Shopify
Building an E-Commerce Business with ShopifyBuilding an E-Commerce Business with Shopify
Building an E-Commerce Business with Shopify
 
SEO with Shopify
SEO with ShopifySEO with Shopify
SEO with Shopify
 
Shopify (An e-Commerce) PPT
Shopify (An e-Commerce) PPTShopify (An e-Commerce) PPT
Shopify (An e-Commerce) PPT
 
Growth Strategies
Growth StrategiesGrowth Strategies
Growth Strategies
 
Shopify
ShopifyShopify
Shopify
 
How to Install Magento 2 [Latest Version]
How to Install Magento 2 [Latest Version]How to Install Magento 2 [Latest Version]
How to Install Magento 2 [Latest Version]
 
20 Tips to Improve Sales on your Ecommerce Site
20 Tips to Improve Sales on your Ecommerce Site20 Tips to Improve Sales on your Ecommerce Site
20 Tips to Improve Sales on your Ecommerce Site
 
How Shopify Scales Rails
How Shopify Scales RailsHow Shopify Scales Rails
How Shopify Scales Rails
 
Shopify Retail Tour - Mailchimp Email Marketing
Shopify Retail Tour - Mailchimp Email MarketingShopify Retail Tour - Mailchimp Email Marketing
Shopify Retail Tour - Mailchimp Email Marketing
 
SEO for Ecommerce: A Comprehensive Guide
SEO for Ecommerce: A Comprehensive GuideSEO for Ecommerce: A Comprehensive Guide
SEO for Ecommerce: A Comprehensive Guide
 

Similar to Shopify Theme Development for Web Designers and Developers

Shopify Theme Building Workshop
Shopify Theme Building WorkshopShopify Theme Building Workshop
Shopify Theme Building WorkshopKeir Whitaker
 
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...Nirvana Canada
 
Awesome e commerce-shopify
Awesome e commerce-shopifyAwesome e commerce-shopify
Awesome e commerce-shopifyMichael Trang
 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyAdvanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyDenise Jacobs
 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS TroubleshootingDenise Jacobs
 
Wordpress and Your Brand
Wordpress and Your BrandWordpress and Your Brand
Wordpress and Your BrandSara Cannon
 
WordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress OptimizationWordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress OptimizationJoost de Valk
 
Styling WooCommerce
Styling WooCommerceStyling WooCommerce
Styling WooCommerceBecky Davis
 
Rapid application development
Rapid application developmentRapid application development
Rapid application developmentNicholas Batik
 
Complete guide for shopify seo
Complete guide for shopify seoComplete guide for shopify seo
Complete guide for shopify seoPearl Lemon
 
Writing your own WordPress themes and plugins
Writing your own WordPress themes and pluginsWriting your own WordPress themes and plugins
Writing your own WordPress themes and pluginsStephanie Wells
 
10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce Sales10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce SalesRodolfo Melogli
 
Alex Podopryhora - Selling across multiple channels made easy
Alex Podopryhora - Selling across multiple channels made easyAlex Podopryhora - Selling across multiple channels made easy
Alex Podopryhora - Selling across multiple channels made easyMeet Magento Italy
 
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180Nguyễn Thị Thanh Huyền
 
B2C-Commerce-Developer Dumps
B2C-Commerce-Developer DumpsB2C-Commerce-Developer Dumps
B2C-Commerce-Developer Dumpsaddisonkalven
 
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress BusinessThe Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress BusinessShane Pearlman
 

Similar to Shopify Theme Development for Web Designers and Developers (20)

Shopify Theme Building Workshop
Shopify Theme Building WorkshopShopify Theme Building Workshop
Shopify Theme Building Workshop
 
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
When Out of the Box Isn’t Good Enough: What You Need to Know About Building C...
 
Awesome e commerce-shopify
Awesome e commerce-shopifyAwesome e commerce-shopify
Awesome e commerce-shopify
 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyAdvanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & Efficiency
 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS Troubleshooting
 
Wordpress and Your Brand
Wordpress and Your BrandWordpress and Your Brand
Wordpress and Your Brand
 
WordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress OptimizationWordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress Optimization
 
Styling WooCommerce
Styling WooCommerceStyling WooCommerce
Styling WooCommerce
 
Rapid application development
Rapid application developmentRapid application development
Rapid application development
 
Complete guide for shopify seo
Complete guide for shopify seoComplete guide for shopify seo
Complete guide for shopify seo
 
Writing your own WordPress themes and plugins
Writing your own WordPress themes and pluginsWriting your own WordPress themes and plugins
Writing your own WordPress themes and plugins
 
10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce Sales10 PHP Snippets to Increase WooCommerce Sales
10 PHP Snippets to Increase WooCommerce Sales
 
Alex Podopryhora - Selling across multiple channels made easy
Alex Podopryhora - Selling across multiple channels made easyAlex Podopryhora - Selling across multiple channels made easy
Alex Podopryhora - Selling across multiple channels made easy
 
Shopify Partner Social
Shopify Partner SocialShopify Partner Social
Shopify Partner Social
 
Mẫu slide dành cho y tế
Mẫu slide dành cho y tếMẫu slide dành cho y tế
Mẫu slide dành cho y tế
 
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
Mẫu slide sáng tạo cho ngành y tế_Nhận làm slide Miss Huyền 0984990180
 
B2C-Commerce-Developer Dumps
B2C-Commerce-Developer DumpsB2C-Commerce-Developer Dumps
B2C-Commerce-Developer Dumps
 
Faster WordPress Workflows
Faster WordPress WorkflowsFaster WordPress Workflows
Faster WordPress Workflows
 
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress BusinessThe Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
The Capitalist in the Co-Op: The Art & Science of the Premium WordPress Business
 
Custom Fields & Custom Metaboxes Overview
Custom Fields & Custom Metaboxes OverviewCustom Fields & Custom Metaboxes Overview
Custom Fields & Custom Metaboxes Overview
 

More from Growth Spark

Strategies for Successfully Defining and Winning Client Projects
Strategies for Successfully Defining and Winning Client ProjectsStrategies for Successfully Defining and Winning Client Projects
Strategies for Successfully Defining and Winning Client ProjectsGrowth Spark
 
Scaling Your Agency
Scaling Your AgencyScaling Your Agency
Scaling Your AgencyGrowth Spark
 
Strategies for Building a Successful E-Commerce Business
Strategies for Building a Successful E-Commerce BusinessStrategies for Building a Successful E-Commerce Business
Strategies for Building a Successful E-Commerce BusinessGrowth Spark
 
Discovering Dollars - Determining Whether Your Idea is a Business
Discovering Dollars - Determining Whether Your Idea is a BusinessDiscovering Dollars - Determining Whether Your Idea is a Business
Discovering Dollars - Determining Whether Your Idea is a BusinessGrowth Spark
 
Prototyping - A Conversation about your Assumptions
Prototyping - A Conversation about your AssumptionsPrototyping - A Conversation about your Assumptions
Prototyping - A Conversation about your AssumptionsGrowth Spark
 
Getting Started with WordPress (Startup Institute Summer 2013)
Getting Started with WordPress (Startup Institute Summer 2013)Getting Started with WordPress (Startup Institute Summer 2013)
Getting Started with WordPress (Startup Institute Summer 2013)Growth Spark
 
Getting Started with WordPress
Getting Started with WordPressGetting Started with WordPress
Getting Started with WordPressGrowth Spark
 
Selling WordPress: Roping, Scoping and Closing Deals
Selling WordPress: Roping, Scoping and Closing DealsSelling WordPress: Roping, Scoping and Closing Deals
Selling WordPress: Roping, Scoping and Closing DealsGrowth Spark
 

More from Growth Spark (8)

Strategies for Successfully Defining and Winning Client Projects
Strategies for Successfully Defining and Winning Client ProjectsStrategies for Successfully Defining and Winning Client Projects
Strategies for Successfully Defining and Winning Client Projects
 
Scaling Your Agency
Scaling Your AgencyScaling Your Agency
Scaling Your Agency
 
Strategies for Building a Successful E-Commerce Business
Strategies for Building a Successful E-Commerce BusinessStrategies for Building a Successful E-Commerce Business
Strategies for Building a Successful E-Commerce Business
 
Discovering Dollars - Determining Whether Your Idea is a Business
Discovering Dollars - Determining Whether Your Idea is a BusinessDiscovering Dollars - Determining Whether Your Idea is a Business
Discovering Dollars - Determining Whether Your Idea is a Business
 
Prototyping - A Conversation about your Assumptions
Prototyping - A Conversation about your AssumptionsPrototyping - A Conversation about your Assumptions
Prototyping - A Conversation about your Assumptions
 
Getting Started with WordPress (Startup Institute Summer 2013)
Getting Started with WordPress (Startup Institute Summer 2013)Getting Started with WordPress (Startup Institute Summer 2013)
Getting Started with WordPress (Startup Institute Summer 2013)
 
Getting Started with WordPress
Getting Started with WordPressGetting Started with WordPress
Getting Started with WordPress
 
Selling WordPress: Roping, Scoping and Closing Deals
Selling WordPress: Roping, Scoping and Closing DealsSelling WordPress: Roping, Scoping and Closing Deals
Selling WordPress: Roping, Scoping and Closing Deals
 

Recently uploaded

AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 

Recently uploaded (20)

AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 

Shopify Theme Development for Web Designers and Developers