Guest User

Untitled

a guest
Jul 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php add_action( 'init', 'hide_shipping_details' );
  2. function hide_shipping_details() {
  3. global $pagenow;
  4. if( is_admin() && $pagenow == "user-edit.php") { ?>
  5. <style> #fieldset-shipping{ display: none !important } </style>
  6. <?php } }
Add Comment
Please, Sign In to add comment