add_filter( 'woocommerce_is_purchasable', '__return_true' ); add_filter( 'woocommerce_get_price_html', '__return_empty_string' );
的列表。
/* Hooks to hide prices in cart and checkout pages */ /* Hides the prices by returning an emtpy string/array */ // Hide the price of individual items in the cart add_filter( 'woocommerce_cart_item_price', '__return_empty_string' ); // Hide the subtotal of individual items in the cart add_filter( 'woocommerce_cart_item_subtotal', '__return_empty_string' ); // Hide the subtotal of all items in the cart add_filter( 'woocommerce_cart_subtotal', '__return_empty_string' ); // Hide the total price of all items in the cart add_filter( 'woocommerce_cart_total', '__return_empty_string' ); // Hide tax in the cart and checkout pages add_filter( 'woocommerce_cart_tax_totals', '__return_empty_array' );