當我商品頁面顯示商品分類(顏色爲& size)時,我需要添加缺貨產品。Shopify:所選商品缺貨
我發現這段代碼,做這一點,但它僅着眼於默認的產品變型時,首先查看該產品的網頁和信息是靜態的:
{% assign variant = product.variants.first %}
{% if variant.inventory_quantity <= 0 and variant.available and variant.inventory_management != '' %}
<p style="color:#ff0000" class="notice">This item is currently out of stock. I will take up to 3 weeks to ship.</p>
{% endif %}
我需要這個做的是根據所選的變體,使消息發揮作用。
我知道有可能涉及到一些java腳本,但我是,但我對此很新。
我發現一個例子網站,正是我在尋找有: http://www.missesdressy.com/dresses/designers/blush-by-alexia/9388_1?track=39549527.r.1
當客戶選擇其大小和顏色變化方案中顯示一條消息,如果該項目是準備出貨或要求特殊訂單,以及在變體的下拉選擇器上顯示可用/特殊訂單/售完字樣。
我可能只是很滿意,只是顯示相應的消息。
所以這是我從我的product_form.liquid中找到的控制變體選擇器的javascript主題。不知道如何修改它在這一點上。
<script type="text/javascript">
// <![CDATA[
$(function() {
$product = $('#product-' + {{ product.id }});
new Shopify.OptionSelectors("product-select-{{ product.id }}", { product: {{ product | json }}, onVariantSelected: selectCallback });
{% if product.available %}
{% assign found_one_in_stock = false %}
{% for variant in product.variants %}
{% if variant.available and found_one_in_stock == false %}
{% assign found_one_in_stock = true %}
{% for option in product.options %}
$('.single-option-selector:eq(' + {{ forloop.index0 }} + ')', $product).val({{ variant.options[forloop.index0] | json }}).trigger('change');
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
});
// ]]>
</script>
這是從我的app.js.liquid也許是腳本的一部分嗎?
}
if (variant && variant.available == true) {
if(variant.price < variant.compare_at_price){
$('.was_price', $product).html(Shopify.formatMoney(variant.compare_at_price, $('form.product_form', $product).data('money-format')))
} else {
$('.was_price', $product).text('')
}
$('.current_price', $product).html(Shopify.formatMoney(variant.price, $('form.product_form', $product).data('money-format')));
$('#add-to-cart', $product).removeClass('disabled').removeAttr('disabled').val('Add to Cart');
$notify_form.hide();
} else {
var message = variant ? "{{ settings.sold_out_text }}" : "Out of Stock";
$('.was_price', $product).text('')
$('.current_price', $product).text(message);
$('#add-to-cart', $product).addClass('disabled').attr('disabled', 'disabled').val(message);
$notify_form.fadeIn();
} };
我想我的主題已經有這個功能。我不確定如何使用它根據變量數量顯示我想要的消息。此外,我認爲這不允許客戶在缺貨時訂購該變體。我希望允許客戶在訂購該選件時即使缺貨也可以訂購。 – otasi
@otasi看到我上面的編輯。 –
我已經添加了已經在我的主題中的JavaScript,我認爲它涵蓋了變體選擇器。不知道如何修改它。 – otasi