I am developing new site in V8 (first attempt) using Executive layout.
Have successfully implemented backordering when out of stock on selected products using custom condition "IsBackOrderButtonShown":
Now I want to use this in cart to show message for customer:
Test page is http://www.thaigiftstore.co.uk/acata...l_Vases_9.html
Any ideas why the message is not showing in the cart?
Have successfully implemented backordering when out of stock on selected products using custom condition "IsBackOrderButtonShown":
PHP Code:
(<Actinic:Variable Name="CatalogIsSuspended"/> == FALSE) AND
(<actinic:variable name="IsOnlineOrderingAllowed" /> == TRUE) AND
(<actinic:variable name="IsInStock" /> == FALSE) AND
(<actinic:variable name="StockLevel" /> > <actinic:variable name="StockSuspendLevel" />) AND
(<Actinic:Variable Name="CanBeOrderedOnline"/> == TRUE) AND
(<actinic:variable name="SingleAddToCartButtonIsUsed" /> == FALSE)
PHP Code:
<!-- Back Order Message Added 04/02/08 -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsBackOrderButtonShown%22%20%2f%3e" >
<tr>
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsProductReferenceVisible%22%20%2f%3e" >
<td width="90">
</td>
</actinic:block>
<td width="280">
<actinic:variable name="BackOrderMsg" />
</td>
</tr>
</actinic:block>
<!-- End Back Order Message -->
Test page is http://www.thaigiftstore.co.uk/acata...l_Vases_9.html
Any ideas why the message is not showing in the cart?
Comment