At the moment my site doesn't display any stock status, the only indication being the display of the cart button, which is removed for out of stock items. I would like to have the stock status displayed, preferably with green tick & red cross graphics including in stock/out of stock text - I don't want any qty's visible, just the status.I've had a look about & the settings in site options are;
Stock/Enable Display of Stock Info = True
Stock/Real Time Stock Display = Use parent(=Display in stock message only).
From that I'm assuming that in stock items should show the text "in stock", but they don't.
In the Design Library/Real Time Stock Display/Display Stock quantities;
<span id="RemoveIfOutOfStock_<actinic:variable name="ProductReference" selectable="false" />" class="ActinicRTS" >
<span id="EnableIfStockOk_<actinic:variable name="ProductReference" selectable="false" />" class="ActinicRTS" style="visibility: hidden; display: none;">
<span id="StockLevel_<actinic:variable name="ProductReference" selectable="false" />" class="ActinicRTS" style="display: inline;"></span> in stock.
</span>
</span>
<span id="EnableIfOutOfStock_<actinic:variable name="ProductReference" selectable="false" />" class="ActinicRTS" style="visibility: hidden; display: none;">
<strong><span class="actrequired"><br /><Actinic:Variable Name="OutOfStock"/></span></strong>
</span>
With my (very) limited knowledge, I imagine that "visibility: hidden; display: none;" in the code has got something to do with not having any stock status visible?
If I can get a stock status to show, where should I start looking to replace the standard text with graphics?
Thanks.
Stock/Enable Display of Stock Info = True
Stock/Real Time Stock Display = Use parent(=Display in stock message only).
From that I'm assuming that in stock items should show the text "in stock", but they don't.
In the Design Library/Real Time Stock Display/Display Stock quantities;
<span id="RemoveIfOutOfStock_<actinic:variable name="ProductReference" selectable="false" />" class="ActinicRTS" >
<span id="EnableIfStockOk_<actinic:variable name="ProductReference" selectable="false" />" class="ActinicRTS" style="visibility: hidden; display: none;">
<span id="StockLevel_<actinic:variable name="ProductReference" selectable="false" />" class="ActinicRTS" style="display: inline;"></span> in stock.
</span>
</span>
<span id="EnableIfOutOfStock_<actinic:variable name="ProductReference" selectable="false" />" class="ActinicRTS" style="visibility: hidden; display: none;">
<strong><span class="actrequired"><br /><Actinic:Variable Name="OutOfStock"/></span></strong>
</span>
With my (very) limited knowledge, I imagine that "visibility: hidden; display: none;" in the code has got something to do with not having any stock status visible?
If I can get a stock status to show, where should I start looking to replace the standard text with graphics?
Thanks.
Comment