Unless you check the box next to "Users adds product to cart using link." in admin/store/settings, your customers on the product page will see a non-functioning form to select quantity and submit.
Unless you check the box next to "Users adds product to cart using link." in admin/store/settings, your customers on the product page will see a non-functioning form to select quantity and submit.
Comments
Comment #1
baraban commentedOh, and if you do check that box, you will see a message "» sold out" at the bottom of your live subproduct checkout page
Comment #2
baraban commentedBTW, the easiest way to get rid of the "sold out" message is in the product module change:
links[] = t('sold out');
to:
if ($node->ptype != 'ec_tangible_subproduct') $links[] = t('sold out');
and let the sell out condition be handled by the live subproducts module for products in that category.
Also, if you need to use this module before it is ready for primetime and to give a decent user experience, in the ec_live_subproducts.css get rid of the last two lines. With the fix above and "Users adds product to cart using link." checked, this allows the base price to be displayed normally at the top of the page and presents the total price with the add to cart link at the bottom (without mangling it in different ways based on your user's browser).
Comment #3
brmassa commentedJake,
this module for Drupal 4.7 is no longer supported.
regards,
massa