mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
6 lines
193 B
Text
6 lines
193 B
Text
add_filter('woocommerce_my_account_my_orders_columns', 'remove_my_account_order_total', 10);
|
|
|
|
function remove_my_account_order_total($order){
|
|
unset($order['order-total']);
|
|
return $order;
|
|
}
|