updated record

2025/7/31 個展の商品を個展が始まるまでcomingsoonで表示する
タグにexhibitionが入っている商品だけを抽出している
snipetts>buy-buttons.liquidを

<product-form
class="product-form"
data-section-id="{{ section.id }}"
>
{% form 'product', product, id: product_form_id, class: 'form', novalidate: 'novalidate', data-type: 'add-to-cart-form' %}

<input
type="hidden"
name="id"
value="{{ product.selected_or_first_available_variant.id }}"
class="product-variant-id"
>

<div class="product-form__buttons">
{% if is_release_target and now_ts < release_date_ts %}
<!-- Coming Soon ボタン -->
<button
type="button"
class="product-form__submit button button--full-width button--disabled"
disabled
>
Coming Soon
</button>
{% else %}
<!-- 通常の Add to Cart ボタン -->
<button
id="ProductSubmitButton-{{ section_id }}"
type="submit"
name="add"
class="product-form__submit button button--full-width {% if show_dynamic_checkout %}button--secondary{% else %}button--primary{% endif %}"
{% if product.selected_or_first_available_variant.available == false %}
disabled
{% endif %}
>
<span>
{%- if product.selected_or_first_available_variant.available -%}
{{ 'products.product.add_to_cart' | t }}
{%- else -%}
{{ 'products.product.sold_out' | t }}
{%- endif -%}
</span>
{%- render 'loading-spinner' -%}
</button>

{%- if show_dynamic_checkout -%}
{{ form | payment_button }}
{%- endif -%}
{% endif %}
</div>

{% endform %}
</product-form>

と表記した

2025/6/9 featured collectionのズームの倍率と表示速度を変更
・asset > compornent-card.css
  .card:hover .media.media--hover-effect > img:first-child:only-child,
  .card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
    transform: scale(1.12);
        /* transform: scale(1.03); */
    /* 20250609追加 */
    transition: transform 0.7s ease-in-out;
  }

 

2024/3/29

・Layout > theme.liquid  に追加

{% render 'meta-tags' %}
{{ 'add-style.css' | asset_url | stylesheet_tag }}
{{ 'swiper-bundle06.css' | asset_url | stylesheet_tag }}
{{ 'swiper-bundle06.js' | asset_url | script_tag }}


・Templetes > page.artist.json を作成


・Sections > no-title.liquid を作成


・Sections > artist-brand.liqud を作成


・Sctions > footer.liquid に追加

<br>
<div class="footer_info">
<!-- <div class="footer_left"></div> -->
<div class="footer_address">
<p>2300 1st Ave.</p>
<p>Seattle, WA, 98121</p>
<p>TEL: <a href="tel:206-376-5619">206-376-5619</a></p>
<p>MAIL: <a href="mailto:info@art-onthetable.com">info@art-onthetable.com</a></p>
</div>
<!-- <div class="footer_center"></div> -->
<div class="footer_storehours">
<p>Store Hours</p>
<p>Wed-Sat : 10-19</p>
<p>Sun : 11-18</p>
</div>
<!-- <div class="footer_left"></div> -->
<div class="cb"></div>
</div>


・Sections > instafeed.liquid を作成


・main-404.liquid に追加しつつ一部削除

<div class="template-404 page-width page-margin center">
<div class="no404"><img src="https://cdn.shopify.com/s/files/1/0605/7558/0413/files/noooodaruma404_io.jpg?v=1642749896"></div>

<br><br>
<div class="message404">THE PAGE YOU'RE LOOKING FOR DOESN'T EXIST!<br>TRY SEARCHING FOR SOMETHING OR KEEP SHOPPING.</div>
<br><br><br><br>


・Assets > add-style.css を作成