View Single Post
  #2  
Old 01-20-2007, 01:32 PM
 
nfc5382 nfc5382 is offline
 

X-Adept
  
Join Date: Nov 2002
Posts: 481
 

Default Re: Mandatory Product Options Selection

easy, fill in the validation box for the option. So for a given option named "OPTION", first item "SELECT ONE":

Code:
if (product_option('OPTION').selectedIndex == 0){ alert('Please select product option.'); return false;} else{ return true; }

So if the user doesnt change the option from "SELECT ONE" it will alert them and not allow adding to cart.
__________________
-----------------------
x-cart v4.7.6 [LIVE]
x-cart v4.0.18 [retired 2004-2016]
x-cart v3.5.13 [retired]
x-cart v3.4.14 [retired]
Reply With Quote