You can customize the display title of the “Shipping” section to make it sound clearer and more understandable in the WooCommerce cart and checkout pages. The simple code snippet given below works by replacing it with the title “Delivery”.
add_filter( 'woocommerce_shipping_package_name', 'ts_new_shipping_title' ); function ts_new_shipping_title() { return "Delivery"; }
Output
The following output shows that the default title “Shipping options” has been replaced by “Delivery”.
The below output shows us how the title appears before applying the code.
Here we are replacing the text of ‘Shipping’ present inside the cart totals . Similarly, you can also do styling to the text such as customizing the shipping total on the WooCommerce checkout which can help customers easily identify the shipping total and understand the associated costs.