我想在 WooCommerce 中更新购物车小计。
如何在 WooCommerce 中添加修改小计的操作?
我曾尝试通过此代码,但不起作用。我想将购物车小计乘以 12 并在购物车页面上显示此计算。
这是我的代码:
add_action( 'woocommerce_before_calculate_totals', 'add_custom_price' );
function add_custom_price( $total) {
foreach ( $total->cart_contents as $key => $value ) {
$modifiedtotal = $total->subtotal * 12;
// --------------------------------
//how can get subtotal with multiply by 12 and it should be show on cart page.
}
}
Run Code Online (Sandbox Code Playgroud)