EDS_Design

Hide “Shipping to…” String @ WooCommerce Cart

Sep 5th, 2025
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. add_action( 'woocommerce_before_cart', 'bbloomer_hide_shippingto' );
  2.  
  3. function bbloomer_hide_shippingto() {
  4.    echo '<style>.woocommerce-shipping-destination{display:none}</style>';
  5. }
Advertisement
Add Comment
Please, Sign In to add comment