I'm trying to set up some sort of pizza shop in WP e-Commerce which needs about 20 checkboxes for pizza topping variations. I got the checkboxes running, but only the last selected variation ends up in the chart.
// Inside wpsc-single-product.php
<input type="checkbox"
name="variation[<?php echo wpsc_vargrp_id(); ?>]"
id="<?php echo wpsc_vargrp_form_id(); ?>"
value="<?php echo wpsc_the_variation_id(); ?>"
/> <?php echo wpsc_the_variation_name(); ?>
I reckon I know what's going wrong, but have no clue how to fix it. It's surely a little thing - but the support forums at getshopped.org seem to have vanished. I just need a little push to get the motor running.
