私はjavascriptスニペットを持っています:
<div id="store_stock_display"><p>Stock: <span class="store_product_stock"></span></p></div>
<script type="text/javascript">
$(function() {
$('.store_product_stock').change(function() {
if ($(this).text() == '0') {
$('#store_stock_display').show();
$(this).text('OUT OF STOCK');
} else if ($(this).text() == '') {$('#store_stock_display').hide();} else {$('#store_stock_display').show();}
});
});
</script>
在庫がある場合は在庫レベル(例:10、100 ...)が表示され、在庫がない場合は在庫切れが表示されます。
そして、私は通知が次のようにスタイリングされることを望んでいます:
<font style="color:red; font-weight:bold;">OUT OF STOCK</font>
or
<div class="abc">OUT OF STOCK</div>
助けてください、ありがとうございました!