Bestellstatus Nachnahme
-
Hallo,
ich m?chte gernde den Default-Bestellstatus bei Nachnahme von “processing” auf “pending” setzen. Dazu habe ichadd_action( 'woocommerce_thankyou', 'my_order_status', 10, 1 ); function my_order_status( $order_id ) { if ( ! $order_id ) { return; } $order = wc_get_order( $order_id ); if ( ( get_post_meta( $order->id, '_payment_method', true ) === "cod" ) && ( $order->post_status === 'wc-processing' ) ) { $order->update_status('pending'); } }
eingesetzt, aber es funktioniert nicht,was an germanized liegen muss, da es ohne Germanized funktioniert. K?nnt Ihr mir sagen, was ich ?ndern muss?
Vielen Dank.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Bestellstatus Nachnahme’ is closed to new replies.