找到您的模板架構版本
探索“Online Store 2.0”模板自定義
您可以在店面中隱藏添加到購物車按鈕,并在將來再次顯示這些按鈕。
備注:此自定義設置與動態(tài)結賬按鈕不兼容。如果您的模板支持動態(tài)結賬,請按照在產(chǎn)品頁面上隱藏動態(tài)結賬按鈕的步驟來阻止顯示按鈕。
備注:本教程的步驟將根據(jù)您使用的是分區(qū)模板還是未分區(qū)模板而有所不同。分區(qū)模板支持通過拖放來安排主頁的布局,未分區(qū)模板則不支持。
如果想了解您的模板是否支持分區(qū),請轉到模板的編輯代碼頁面。如果 Sections 目錄中有文件,您則正在使用已分區(qū)模板。未分區(qū)模板是在 2016 年 10 月之前發(fā)布的,并且 Sections 目錄中沒有文件。
如果您使用已分區(qū)模板,請點擊 Sectioned themes(已分區(qū)模板)按鈕并按照說明進行操作。如果您使用較舊的未分區(qū)模板,請點擊 Non-sectioned themes(未分區(qū)模板)按鈕并按照說明進行操作。
PC:
在 Shopify 后臺中,轉到在線商店 > 模板。
找到要編輯的模板,然后點擊操作 > 編輯代碼。
在 Sections 目錄中,點擊打開 product-template.liquid
文件。查找添加到購物車按鈕對應的 HTML 代碼。您可以首先搜索 cart 一詞。
“添加到購物車”按鈕的代碼因模板而異。請查找包含 Add to cart
、AddToCart
或 add-to-cart
等類似文本的 <input>
或 <button>
標記。
蘋果系統(tǒng):
在 Shopify 后臺中,轉到 > 模板。
找到要編輯的模板,然后點擊操作 > 編輯代碼。
在 Sections 目錄中,點擊打開 product-template.liquid
文件。查找添加到購物車按鈕對應的 HTML 代碼。您可以首先搜索 cart 一詞。
“添加到購物車”按鈕的代碼因模板而異。請查找包含 Add to cart
、AddToCart
或 add-to-cart
等類似文本的 <input>
或 <button>
標記。
安卓系統(tǒng):
在 Shopify 后臺中,轉到在線商店 > 模板。
找到要編輯的模板,然后點擊操作 > 編輯代碼。
在 Sections 目錄中,點擊打開 product-template.liquid
文件。查找添加到購物車按鈕對應的 HTML 代碼。您可以首先搜索 cart 一詞。
“添加到購物車”按鈕的代碼因模板而異。請查找包含 Add to cart
、AddToCart
或 add-to-cart
等類似文本的 <input>
或 <button>
標記。
在 Debut 模板中,“添加到”按鈕的代碼如下所示:
<button type="submit" name="add" {% unless current_variant.available %}disabled="disabled"{% endunless %} Default Title' %} product-form__cart-submit--small{% endif %}"> <span > {% unless current_variant.available %} {{ 'products.product.sold_out' | t }} {% else %} {{ 'products.product.add_to_cart' | t }} {% endunless %} </span> </button>
找到代碼后,將它放入 Liquid {% comment %}
和 {% endcomment %}
標記之間。這將會阻止該代碼在您的商店中顯示,但如果您想稍后更改您的新模板,您可以輕松將其恢復。
Using the example above, the new code would look like this: ``` liquid {% comment %} <button type="submit" name="add" {% unless current_variant.available %}disabled="disabled"{% endunless %} Default Title' %} product-form__cart-submit--small{% endif %}"> <span > {% unless current_variant.available %} {{ 'products.product.sold_out' | t }} {% else %} {{ 'products.product.add_to_cart' | t }} {% endunless %} </span> </button> {% endcomment %}
<input>
or <button>
tag with text like Add to cart
, AddToCart
, or add-to-cart
.iPhone:
From the Shopify app, tap Store.
In the Sales channels section, tap Online Store.
Tap Manage themes.
Find the theme you want to edit, and then click Actions > Edit code.
In the Sections directory, click to open your product-template.liquid
file. Find the HTML code for the Add to cart button. You can search for the word cart as a start.
The code for the add to cart button varies theme to theme. Look for an <input>
or <button>
tag with text like Add to cart
, AddToCart
, or add-to-cart
.
Android:
From the Shopify app, tap Store.
In the Sales channels section, tap Online Store.
Tap Manage themes.
Find the theme you want to edit, and then click Actions > Edit code.
In the Sections directory, click to open your product-template.liquid
file. Find the HTML code for the Add to cart button. You can search for the word cart as a start.
The code for the add to cart button varies theme to theme. Look for an <input>
or <button>
tag with text like Add to cart
, AddToCart
, or add-to-cart
.
In the Debut theme, the add to cart button code looks like this:
<button type="submit" name="add" {% unless current_variant.available %}disabled="disabled"{% endunless %} Default Title' %} product-form__cart-submit--small{% endif %}"> <span > {% unless current_variant.available %} {{ 'products.product.sold_out' | t }} {% else %} {{ 'products.product.add_to_cart' | t }} {% endunless %} </span> </button>
When you find the code, wrap it in Liquid {% comment %}
and {% endcomment %}
tags. This will stop the code from being shown on your store, but will let you easily put it back if you want to change your new template later.
Using the example above, the new code would look like this:
{% comment %} <button type="submit" name="add" {% unless current_variant.available %}disabled="disabled"{% endunless %} Default Title' %} product-form__cart-submit--small{% endif %}"> <span > {% unless current_variant.available %} {{ 'products.product.sold_out' | t }} {% else %} {{ 'products.product.add_to_cart' | t }} {% endunless %} </span> </button> {% endcomment %}duct page.
Click Save to confirm your changes.
When you are ready to show your Add to cart buttons again, go back to your product-template.liquid
file on the Edit HTML/CSS page, remove the {% comment %}
and {% endcomment %}
tags, and click Save.
特別聲明:以上文章內(nèi)容僅代表作者本人觀點,不代表ESG跨境電商觀點或立場。如有關于作品內(nèi)容、版權或其它問題請于作品發(fā)表后的30日內(nèi)與ESG跨境電商聯(lián)系。
二維碼加載中...
使用微信掃一掃登錄
使用賬號密碼登錄
平臺顧問
微信掃一掃
馬上聯(lián)系在線顧問
小程序
ESG跨境小程序
手機入駐更便捷
返回頂部