mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
https://stackoverflow.com/questions/77298423/hide-original-subtotal-line-from-woocomerce-admin-order-totals/77298485
9 lines
374 B
Text
9 lines
374 B
Text
add_action('admin_head', 'admin_head_shop_order_inline_css' );
|
|
function admin_head_shop_order_inline_css() {
|
|
global $pagenow, $typenow;
|
|
|
|
// Targeting WooCommerce admin single orders
|
|
if ( in_array( $pagenow, ['post.php', 'post-new.php'] ) && $typenow === 'shop_order' ) :
|
|
?><style>table.wc-order-totals tr:first-child{display:none;}</style><?php
|
|
endif;
|
|
}
|