View helper.html
<div class="accordion-wrapper-cstm"> | |
<div class="so-tab" style="text-align: left;"> | |
<input id="so-tab-1" type="checkbox" name="tabs"> <label for="so-tab-1"><h4>Where can I buy:</h4></label> | |
<div class="so-tab-content"> | |
<p>At this moment in time, right here on our website. It's super simple, with all major card options, shop-pay & Paypal</p> | |
</div> | |
</div> | |
<div class="so-tab" style="text-align: left;"> |
View original.liquid
<div class="page-width page-content"> | |
<div class="grid"> | |
<div class="grid__item medium-up--one-third medium-up--push-one-third text-center"> | |
<div class="form-vertical"> | |
{% form 'reset_customer_password' %} | |
<header class="section-header"> | |
<h1 class="section-header__title">{{ 'customer.reset_password.title' | t }}</h1> | |
<p>{{ 'customer.reset_password.subtext' | t: email: email }}</p> |
View current.liquid
<div class="page-width page-content"> | |
<div class="grid"> | |
<div class="grid__item medium-up--one-third medium-up--push-one-third"> | |
<header class="section-header"> | |
<h1 class="section-header__title">{{ 'customer.register.title' | t }}</h1> | |
</header> | |
<div class="form-vertical"> |
View header.liquid
{%- comment -%} | |
This is a required section for the Shopify Theme Store. | |
It is available in the "Header" section in the theme editor. | |
Theme Store required settings | |
- Show announcement | |
- Text: message to announce | |
- Link: link of the announcement bar | |
Theme Store optional settings |
View product-item.liquid
<div class="ProductItem {% if use_horizontal %}ProductItem--horizontal{% endif %}"> | |
<div class="ProductItem__Wrapper"> | |
{%- comment -%} | |
We are using LazySizes to efficiently choose the most appropriate image in the set. However, because internally LazySizes uses srcset, we need to make | |
sure that the image sizes we offer is not larger than the max size uploaded by the merchants. | |
{%- endcomment -%} | |
{%- if settings.product_image_size == 'natural' or use_horizontal -%} | |
{%- assign use_natural_size = true -%} | |
{%- else -%} |
View rapunzel-accordion-snippet.liquid
<!-- Begin Accordion Snippet --> | |
<style> | |
.so-tab { | |
position: relative; | |
width: 100%; | |
overflow: hidden; | |
margin: 25px 0; | |
} | |
.so-tab label { | |
position: relative; |
View algolia_instant_search.js.liquid
search: instantsearch({ | |
appId: algolia.config.app_id, | |
apiKey: algolia.config.search_api_key, | |
indexName: '' + algolia.config.index_prefix + 'products', | |
searchParameters: { | |
clickAnalytics: true | |
}, | |
urlSync: {}, | |
searchFunction: function (searchFunctionHelper) { | |
// Set query parameters here because they're not kept when someone |
View product-description-tabs.liquid
<ul class="product-tabs"> | |
<li class="current"><a href="#fragment-1"><span>Description</span></a></li> | |
<li><a href="#fragment-2"><span>Ingredients</span></a></li> | |
<li><a href="#fragment-3"><span>Reviews</span></a></li> | |
</ul> | |
<div class="tab"> | |
<div id="fragment-1" class="tab-content"> | |
<p>Description Content here</p> | |
<p> </p> | |
</div> |
NewerOlder