Skip to content

Instantly share code, notes, and snippets.

View liamgriffin's full-sized avatar

Liam Griffin liamgriffin

  • Shopify
  • Galway, Ireland
View GitHub Profile
@liamgriffin
liamgriffin / main-product-section-without-blocks.liquid
Created September 6, 2021 10:10
How to Create Shopify Blocks | Main Product section without blocks
<div class="product__info-container">
<h2>{{ product.title }}</h2>
{{ product.price }}
{%- if product.vendor -%}
<p>{{ product.vendor }}</p>
{%- endif -%}
@liamgriffin
liamgriffin / footer-simple-block-settings.liquid
Created September 6, 2021 10:08
How to Create Shopify Blocks | Simple Footer Section
@liamgriffin
liamgriffin / footer-simple-array.liquid
Created September 6, 2021 10:07
How to Create Shopify Blocks | Block array
@liamgriffin
liamgriffin / footer-simple-tags.liquid
Created September 6, 2021 10:06
How to Create Shopify Blocks | Control Flow Tags for link and text blocks
@liamgriffin
liamgriffin / footer-simple.liquid
Created September 6, 2021 10:04
How to Create Shopify Blocks | Simple Footer Section
@liamgriffin
liamgriffin / product.json
Created July 29, 2021 07:57
How to Create Your First Shopify Theme Section | Product JSON Template with addition section
{
"name": "Product",
"sections": {
"main": {
"type": "product-template"
},
"recommendations": {
"type": "product-recommendations"
}
},
@liamgriffin
liamgriffin / custom-text.liquid
Last active August 30, 2021 08:46
How to Create Your First Shopify Theme Section | Custom Text Section with Presets
<div class="custom-text-section">
<h2> {{ section.settings.custom_text_title }} </h2>
<div>{{ section.settings.custom_text_body }}</div>
</div>
{% schema %}
{
"name": "Text Box",
"settings": [
{
@liamgriffin
liamgriffin / custom-text.liquid
Last active August 30, 2021 08:44
How to Create Your First Shopify Theme Section | Custom Text Section
<div class="custom-text-section">
<h2> {{ section.settings.custom_text_title }} </h2>
<div>{{ section.settings.custom_text_body }}</div>
</div>
{% schema %}
{
"name": "Text Box",
"settings": [
{
@liamgriffin
liamgriffin / product.json
Created July 29, 2021 07:51
How to Create Your First Shopify Theme Section | Product JSON Template
{
"name": "Product",
"sections": {
"main": {
"type": "main-product"
}
},
"order": [
"main"
]
@liamgriffin
liamgriffin / accessibilityAutoFocus.jsx
Created May 18, 2021 16:21
Creating Accessible React Native Apps | accessibilityAutoFocus Example
<Text
...
accessibilityRole="header"
accessibilityAutoFocus
>
Share your random IDs
</Text>