Jak přejmenuju order status ve WooCommerce? Potřebuju udělat z "On Hold" "New Order" a pomocí filtru to umím jenom ve stavu objednávek ale v takových těch filtrovacích nesmyslech nahoře to pořád zůstává stejné :/ Díky za tip, googlila i hledala v kódu a asi nevím jak.
add_filter( 'wc_order_statuses', array ( $this , 'rename_order_statuses' ) );
public function rename_order_statuses( $order_statuses ) {
foreach ( $order_statuses as $key => $status ) {
$new_order_statuses[ $key ] = $status;
if ( 'wc-on-hold' === $key ) {
$order_statuses['wc-on-hold'] = _x( 'New Order', 'Order status', 'woo-mailstep' );
}
}
return $order_statuses;
}