I am trying to use an IF statement with ordering options, but I can't seem to find a reliable tag to use. Here is an example of what I am currently doing:
[-- IF PRODUCT.DisplayOrderingOptions --]
<div id="skucart-options">
[-- IF PRODUCT.OptionText --]
<span class="options-desc">[-- PRODUCT.OptionText --]</span>
[-- ELSE --]
<span class="options-desc">Please Select Option(s):</span>
[-- END_IF --]
<div class="options-menu">[-- Order_Option_Menu Column SKU --]</div>
</div>
[-- END_IF --]
The problem with this is that all my product more info pages have the Display Ordering Options selected so that it shows up on the product page and not just in the cart, which means that this tag is not reliable to base an IF statement on for something like my own options text to appear if one is not specified in the Options Text field.
Right now the text "Please Select Option(s):" appears on all pages whether there are ordering options or not.
Any ideas of what tag I can use? If there was a tag for Option Menu Text then that would be perfect since my text would only show up if there are any options entered into the Option Menu Text field. I can't even think of a way to use a VAR tag with this. ??
Thanks for any ideas you have!