Hi Support,
please, i need your help once more.
After the last woocommerce update my shooping cart view lokks like picture one.
Because my shop is german i need the look of picture 2.
How can i fix this?
Thank’s for any help.
Best regards,
Markus
No one can help me?
Hi,
Thank you for using Enfold.
Looks like you managed to change the “SHIPPING” text to “VERSANDKOSTEN”. Is that correct?
Best regards,
Ismael
Hi Ismael,
i found this code in the web that solve my problem:
// Hide the name of the shipping method in the shopping cart
add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_shipping_label', 10, 2 );
function remove_shipping_label($label, $method) {
$new_label = preg_replace( '/^.+:/', '', $label );
return $new_label;
}
add_filter( 'woocommerce_shipping_package_name', 'custom_shipping_package_name' );
function custom_shipping_package_name( $name ) {
return 'VERSANDKOSTEN';
}
Now it looks like it should :-)
Best regards,
Markus
Hi Markus,
Great, glad you found a solution and thanks for sharing :-)
Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
Hi Rikard,
you can mark this thread as solved.
Best regards,
Markus