我必须在WooCommerce商店中为每个购物车行添加费用。此费用旨在更改单价和总额。 此费用不作为运费和总额的费用。 每个篮子/每件产品需要收取服务费(54美元)。
例如,每件产品0.81美元加上54美元的服务费将导致每件产品1.81美元,50件产品总共94.66美元。
到目前为止我所拥有的......
// Change the line total price
add_filter( 'woocommerce_get_discounted_price', 'calculate_discounted_price', 10, 2 );
// Display the line total price
add_filter( 'woocommerce_cart_item_subtotal', 'display_discounted_price', 10, 2 );
function calculate_discounted_price( $price, $values ) {
$price += 5;
return $price;
}
function display_discounted_price( $values, $item ) {
return wc_price( $item[ 'line_total' ] );
}
非常感谢你的帮助!