在產品頁面上顯示子類的剩餘庫存
您可以在商品頁面或精選商品區段新增訊息,以在商品子類的庫存不足時顯示庫存品項數量。若要顯示此訊息,您必須為商品啟用庫存追蹤。
此自訂程序的步驟會因佈景主題而異。點擊佈景主題的按鈕,然後依照下列 指示操作:
Debut
Debut 的步驟
編輯 theme.liquid
- 在 Shopify 管理介面 ,前往「線上商店」 > 「佈景主題」。
- 找到要編輯的佈景主題,然後依序點擊「…」按鈕和「編輯程式碼」。
- 在「版面配置」目錄中,開啟
theme.liquid
。 -
找到程式碼中的結束標籤
</head>
。在結束標籤</head>
上方新的一行,貼上下列程式碼:
- 點擊「儲存」。
編輯 product-template.liquid
或 featured-product.liquid
-
在「區段」目錄中,開啟
product-template.liquid
或featured-product.liquid
:- 開啟
product-template.liquid
以將此功能新增至產品頁面。 - 開啟
featured-product.liquid
以將 此功能新增至首頁的精選產品區段。
- 開啟
找到
{% form 'product'
。在此標籤上方新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 {{ current_variant.inventory_quantity }}
內容。
- 在檔案最下方新增下列程式碼:
- 點擊「儲存」。
編輯 theme.js.liquid
或 theme.js
您必須對檔案進行的變更取決於您使用的 Debut 版本。
17.8.0 (含) 以下的版本
- 開啟
theme.js.liquid
或theme.js
。 -
找到
theme.Product = (function()
。在this.selectors = {
下方,新增下列程式碼:
- 在同一個檔案中,找到
_updateAddToCart: function(evt) {
。在其正下方新增下列程式碼:
-
找到程式碼
if (variant.available) {
。在} else {
陳述式之前,新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 ${variantStock[variant.id]}
內容。
- 點擊「儲存」。
17.9.0 (含) 以上的版本
- 開啟
theme.js.liquid
或theme.js
。 -
找到
theme.Product = (function()
。在this.selectors = {
下方,新增下列程式碼:
- 在同一個檔案中,找到
_setProductState: function(evt) {
。在其正下方新增下列程式碼:
- 在同一個函數中,找到
if (!variant) {
。在結束括弧}
後,新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 ${variantStock[variant.id]}
內容。
- 點擊「儲存」。
Brooklyn
Brooklyn 的步驟
編輯 theme.liquid
- 在 Shopify 管理介面 ,前往「線上商店」 > 「佈景主題」。
- 找到要編輯的佈景主題,然後依序點擊「…」按鈕和「編輯程式碼」。
- 在「版面配置」目錄中,開啟
theme.liquid
。 -
找到程式碼中的結束標籤
</head>
。在結束標籤</head>
上方新的一行,貼上下列程式碼:
- 點擊「儲存」。
編輯 product-template.liquid
或 featured-product.liquid
-
在「區段」目錄中,開啟
product-template.liquid
或featured-product.liquid
:- 開啟
product-template.liquid
以將此功能新增至產品頁面。 - 開啟
featured-product.liquid
以將此功能新增至首頁的精選產品區段。
- 開啟
找到
{% form 'product'
。在此標籤上方新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 {{current_variant.inventory_quantity }}
內容。
- 在檔案最下方新增下列程式碼:
- 點擊「儲存」。
編輯 theme.js.liquid
或 theme.js
- 開啟
theme.js.liquid
或theme.js
。 -
找到
theme.Product = (function()
。在this.selectors = {
下方,新增下列程式碼:
- 在同一個檔案中,找到
if (variant.available) {
。在} else {
陳述式之前,請新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 ${variantStock[variant.id]}
內容。
- 點擊「儲存」。
Simple
Simple 的步驟
編輯 theme.liquid
- 在 Shopify 管理介面 ,前往「線上商店」 > 「佈景主題」。
- 找到要編輯的佈景主題,然後依序點擊「…」按鈕和「編輯程式碼」。
- 在「版面配置」目錄中,開啟
theme.liquid
。 -
找到程式碼中的結束標籤
</head>
。在結束標籤</head>
上方新的一行,貼上下列程式碼:
- 點擊「儲存」。
編輯 product-template.liquid
或 featured-product.liquid
-
在「區段」目錄中,開啟
product-template.liquid
或featured-product.liquid
:- 開啟
product-template.liquid
以將此功能新增至產品頁面。 - 開啟
featured-product.liquid
以將此功能新增至首頁的精選產品區段。
- 開啟
找到
{% form 'product'
。在此標籤上方新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 {{current_variant.inventory_quantity }}
內容。
- 在檔案最下方新增下列程式碼:
- 點擊「儲存」。
編輯 theme.js.liquid
或 theme.js
- 開啟
theme.js.liquid
或theme.js
。 -
找到
theme.Product = (function()
。在this.selectors = {
下方,新增下列程式碼:
- 在同一個檔案中,找到
if (variant.available) {
。在} else {
陳述式之前,請新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 ${variantStock[variant.id]}
內容。
- 點擊「儲存」。
Minimal
Minimal 的步驟
編輯 theme.liquid
- 在 Shopify 管理介面 ,前往「線上商店」 > 「佈景主題」。
- 找到要編輯的佈景主題,然後依序點擊「…」按鈕和「編輯程式碼」。
- 在「版面配置」目錄中,開啟
theme.liquid
。 -
找到程式碼中的結束標籤
</head>
。在結束標籤</head>
上方新的一行,貼上下列程式碼:
- 點擊「儲存」。
編輯 product-template.liquid
或 featured-product.liquid
-
在「區段」目錄中,開啟
product-template.liquid
或featured-product.liquid
:- 開啟
product-template.liquid
以將此功能新增至產品頁面。 - 開啟
featured-product.liquid
以將此功能新增至首頁的精選產品區段。
- 開啟
找到
{% form 'product'
。在此標籤上方新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 {{current_variant.inventory_quantity }}
內容。
- 在檔案最下方新增下列程式碼:
- 點擊「儲存」。
編輯 theme.js.liquid
或 theme.js
- 開啟
theme.js.liquid
或theme.js
。 -
找到
theme.Product = (function()
。在this.selectors = {
下方,新增下列程式碼 :
- 在同一個檔案中,找到
if (variant.available) {
。在} else {
陳述式之前,請新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 ${variantStock[variant.id]}
內容。
- 點擊「儲存」。
Boundless
Boundless 的步驟
編輯 theme.liquid
- 在 Shopify 管理介面 ,前往「線上商店」 > 「佈景主題」。
- 找到要編輯的佈景主題,然後依序點擊「…」按鈕和「編輯程式碼」。
- 在「版面配置」目錄中,開啟
theme.liquid
。 -
找到程式碼中的結束標籤
</head>
。在結束標籤</head>
上方新的一行,貼上下列程式碼:
- 點擊「儲存」。
編輯 product-template.liquid
或 featured-product.liquid
-
在「區段」目錄中,開啟
product-template.liquid
或featured-product.liquid
:- 開啟
product-template.liquid
以將此功能新增至產品頁面。 - 開啟
featured-product.liquid
以將此功能新增至首頁的精選產品區段。
- 開啟
找到
{% form 'product'
。在此標籤上方新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 {{current_variant.inventory_quantity }}
內容。
- 在檔案最下方新增下列程式碼:
- 點擊「儲存」。
編輯 theme.js.liquid
或 theme.js
- 開啟 'theme.js.liquid' * 或 *'theme.js'。
-
找到
theme.Product = (function()
。在var selectors = {
下方,新增下列程式碼:
- 在同一個檔案中,找到
$(selectors.SKU, this.$container).html(variant.sku);
。在其正下方新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 ${variantStock[variant.id]}
內容。
- 點擊「儲存」。
Narrative
Narrative 的步驟
編輯 theme.liquid
- 在 Shopify 管理介面 ,前往「線上商店」 > 「佈景主題」。
- 找到要編輯的佈景主題,然後依序點擊「…」按鈕和「編輯程式碼」。
- 在「版面配置」目錄中,開啟
theme.liquid
。 -
找到程式碼中的結束標籤
</head>
。在結束標籤</head>
上方新的一行,貼上下列程式碼:
- 點擊「儲存」。
編輯 product-template.liquid
或 featured-product.liquid
-
在「區段」目錄中,開啟
product-template.liquid
或featured-product.liquid
:- 開啟
product-template.liquid
以將此功能新增至產品頁面。 - 開啟
featured-product.liquid
以將此功能新增至首頁的精選產品區段。
- 開啟
找到
{% include 'product-form' %}
。在此標籤上方新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 {{current_variant.inventory_quantity }}
內容。
- 在檔案最下方新增下列程式碼:
- 點擊「儲存」。
編輯 custom.js
- 開啟「
custom.js
」。 - 在檔案最下方新增下列程式碼:
上述程式碼會輸出 Stock: x
。您可以調整 <p>
標籤中的內容來變更用語。請務必在 <p>
標籤中包含 ${variantStock[variant.id]}
內容。
- 點擊「儲存」。