Thread Starter
rpp97
(@rpp97)
Hi,
We are using code to set the price.
foreach ( $cart->get_cart() as $cart_item ) {
// Set the new price
if( $cart_item['product_id'] == 204 ){
parse_str($_COOKIE['formdata'], $formdata);
$cart_item['data']->set_price($formdata['custom_price']);
}
}
This price is saved on the backend of your plugin, but not recovered.
And when I follow the link, the price on backend is set again to 0.
Thanks