Display Shipping Cost In String With Money Sing
add_action('woocommerce_review_order_before_payment','QuadLayers_callback_function');
function QuadLayers_callback_function(){
$shipping_total = WC()->cart->get_cart_shipping_total();
echo $shipping_total;
}
Comments
Post a Comment