add_filter( 'woocommerce_before_calculate_totals', 'auto_set_deposit_price', 20, 1 ); function auto_set_deposit_price( $cart ) { if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return;foreach ( $cart->get_cart() as $cart_item ) { if ( isset( $cart_item['deposit_base_price'] ) ) { $deposit_price = $cart_item['deposit_base_price'] * 0.3; $cart_item['data']->set_price( $deposit_price ); } } }

Affiliate Reset Password

Lost your password? Please enter your email address. You will receive a link to create a new password via email.