Shopify テーマ、Liquid、ロゴ、その他の類似トピック
はじめまして。
現在テーマDawnでECサイトを作成しています。
デザイン面からTOPページのヘッダーとフッターのみ非表示にしたいのですが上手くいきません。
方法が御座いましたらご教示いただけますと幸いです。
解決済! ベストソリューションを見る。
成功
theme.liquidを開き、{% section 'header' %}と{% section 'footer' %}の部分を以下のようにしてください。
{% if template != 'index' %}
{% section 'header' %}
{% endif %}
{% if template != 'index' %}
{% section 'footer' %}
{% endif %}
トップページは「index.json」テンプレートを使用するので、テンプレートがindex以外は{% section %}を出力するという分岐をそれぞれに適用させます。
また、{% unless == 'index' %}〜{ % endunless %}を使っても同様の処理が可能です。
成功
theme.liquidを開き、{% section 'header' %}と{% section 'footer' %}の部分を以下のようにしてください。
{% if template != 'index' %}
{% section 'header' %}
{% endif %}
{% if template != 'index' %}
{% section 'footer' %}
{% endif %}
トップページは「index.json」テンプレートを使用するので、テンプレートがindex以外は{% section %}を出力するという分岐をそれぞれに適用させます。
また、{% unless == 'index' %}〜{ % endunless %}を使っても同様の処理が可能です。
ありがとうございます。
完璧にできました!!
トップページではなく、特定のページのみ、ヘッダー・フッターを非表示にするにはどうすれば良いでしょうか?
「特定のページ」というのは、「ドメイン/pages/ハンドル」といったPagesで作成したページのことでしょうか?
以下のような分岐で非表示にできると思います。
{% if page.handle != 'ハンドル名' %}
{% section 'header' %}
{% endif %}
{% if page.handle != 'ハンドル名' %}
{% section 'footer' %}
{% endif %}
もしくは
{% unless page.handle == 'ハンドル名' %}
{% section 'header' %}
{% endunless %}
{% unless page.handle == 'ハンドル名' %}
{% section 'footer' %}
{% endunless %}
とても参考になりました!
こちらの「フッダー・ヘッターの非表示」を複数ページで行う場合はどう記入すればいいんでしょうか?
「or」を使って複数指定してください。
https://shopify.dev/docs/api/liquid/basics#operators
{% if page.handle != 'ハンドル1' or page.handle != 'ハンドル2' %}
{% section 'header' %}
{% endif %}
{% if page.handle != 'ハンドル1' or page.handle != 'ハンドル2' %}
{% section 'footer' %}
{% endif %}
「page.handle」はPagesで作成したページ以外には適用されないのでご注意ください。
また、該当ページがたくさんあって1行が長くなりすぎてしまう場合や、Pages以外もまとめて処理したい場合は、配列化すると便利かもしれません。
{%- liquid
assign hide_handles = 'ハンドル1,ハンドル2,ハンドル3' | split: ','
assign current_handle = canonical_url | split: '/' | last
assign section_hide = false
for handle in hide_handles
if current_handle == handle
assign section_hide = true
endif
endfor
unless section_hide
section 'header'
endunless
unless section_hide
section 'footer'
endunless
-%}
いつもShopifyをご利用いただき、ありがとうございます。 Shopifyは、皆様の日本語での利用体験の向上に努めております。さらなる改善のために皆様のご意見をお寄せい...
By JasonH May 9, 2025Shopify アカデミーの学習パスと認定スキルバッジExpanding Your Shopify Business Internationallyを活用して、国際的にビジネ...
By Shopify Feb 7, 2025Shopify アカデミーの学習パスB2B on Shopify:立ち上げとカスタマイズで卸売販売に進出しましょう。これら3つの無料コースは、ShopifyストアでB2B機能...
By Shopify Jan 31, 2025