Add Shipping Cost
add_action( 'woocommerce_after_order_notes', 'cpm_woocommerce_checkout_update');
function cpm_woocommerce_checkout_update(){
// WC()->cart->get_cart_shipping_total();
$shipping = wc_cart_totals_shipping_html();
echo $shipping;
}
add_action( 'woocommerce_after_order_notes', 'cpm_woocommerce_checkout_update');
function cpm_woocommerce_checkout_update(){
// WC()->cart->get_cart_shipping_total();
$shipping = wc_cart_totals_shipping_html();
echo $shipping;
}
Comments
Post a Comment