Hi,

I'm trying to modify the price of a product using conditional actions and Triggers. The Trigger used is:

Trigger: Product node is added to cart

And the code I add to ACTIONS is PHP code:

drupal_set_message("sell_price: ".$product->sell_price);
drupal_set_message("list_price: ".$product->list_price);

$product->sell_price=15;
drupal_set_message("New price: ".$product->sell_price);

However the price I have in the cart is the old price, no modification to the product is done. Any clue?.

Regards,