say I want to tag a number of product on a "sales" taxonomy term which has a 5% off discount .

Comments

mrfelton’s picture

Wouldn't this be better done with something like uc_discount?

mrfelton’s picture

Status: Active » Postponed (maintainer needs more info)
BManuel’s picture

I need this functionality too. Can it be done?
thanks

jday’s picture

Here's how I'm doing it, looking for 7 specific taxonomy terms:

$node = node_load($item->nid);
$terms = taxonomy_node_get_terms($node);
$cat = array(2,3,4,5,6,7,8);
foreach ($terms as $term) {
 if(in_array($term->tid, $cat)){
  $tid = $term->tid;
 }
} 
tr’s picture

Status: Postponed (maintainer needs more info) » Fixed

#4 answered the question about how to access taxonomy information within a custom price calculation, so I'm going to mark this issue fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.