Re: alien73 wrote:If you need to

Joined: 11/10/2007
Juice: 327

Check out http://www.ubercart.org/docs/api/hook_add_to_cart for attributes

here's another for stock check

<?php
  $stock
= uc_stock_level($node->model);
  if (
$stock > 0) {
  print
'Status: In Stock';
  }else{
  print
'Status: Out Of Stock';
  }
 
?>
Nifty Products Tutorial Part 1 By: mykz- (132 replies) Wed, 03/19/2008 - 19:04