• Resolved vbk91

    (@vbk91)


    Hi guys

    we need to remove “shipping charges:” before shipping price on the cart page. programmatically Please give me the solution.
    e.g. Shipping Charges: £5.00

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Sofyan Sitorus

    (@sofyansitorus)

    Sorry, your issue not related with this plugin.

    Thread Starter vbk91

    (@vbk91)

    Hi

    Thanks for replaying

    but “Shipping Charges” getting from our plugin setting(Global Rates Settings) like “label” we tried to change and it changes in our plugin setting but I need this text to remove by programmatically. Please give me a solution.

    • This reply was modified 4 years, 9 months ago by vbk91.
    Thread Starter vbk91

    (@vbk91)

    Hi,

    Thanks

    I find out solution for that put following code in functions.php
    //remove_shipping_label
    add_filter( ‘woocommerce_cart_shipping_method_full_label’, ‘biz_remove_shipping_label’, 9999, 2 );
    function biz_remove_shipping_label( $label, $method ) {
    $new_label = preg_replace( ‘/^.+:/’, ”, $label );
    return $new_label;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove the text “Shipping charges” before shipping price’ is closed to new replies.