WooCommerce:将产品添加到购物车,顶部是超控价格购物车和快速购物车?

时间:2015-09-11 11:38:04

标签: wordpress woocommerce

我试试这个

add_action( 'woocommerce_before_calculate_totals', 'add_custom_price' );

function add_custom_price( $cart_object ) {
   $custom_price = 10; // This will be your custome price  
    foreach ( $cart_object->cart_contents as $key => $value ) {
    $value['data']->price = $custom_price;
    }
 }

但这只更新了购物车。但仍然在顶部的快速购物车图标中显示实际产品价格。任何解决方案?

0 个答案:

没有答案
相关问题