I want to add additional cost in the cart product total price, not in product price nor the whole cart total price. I am referring about the product total price.
Right now i have not not try and I don't have any code.
add_action( 'woocommerce_before_calculate_totals', 'function add_additional_price' );
function add_additional_price( $cart_object ) {
$custom_price = 10; // This will be your custome price
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…