Changes in Cart and Checkout
-
Hi,
Previously my cart and checkout showed “Shipping”, now suddenly it’s changed to “Shipment 1”. How to change it back?
Attachments:
You must be
logged in to view attached files.
Hello,
You can change that text by using the Loco Translate plugin, here is our article on how to use it – https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/
Best Regards,
Just an fyi, this is a woocommerce change not a theme issue.
I added this to my htaccess per Claude and it handles it without needing an extra plugin:
add_filter( 'woocommerce_shipping_package_name', 'custom_shipping_package_name', 10, 3 );
function custom_shipping_package_name( $package_name, $package_id, $package ) {
return esc_html__( 'Shipping', 'your-theme-textdomain' );
}
Hello,
That’s great to hear!
I’m glad you found the solution. If you need any further help or have other questions, feel free to let us know—we’re happy to help.
Thanks for contacting us.
Have a great day.
Topic Closed.
Best Regards.
The topic ‘Changes in Cart and Checkout’ is closed to new replies.