Woocommerce custom order status credit
-
Hi, I have added custom order status to woocommerce. I am not able to see the custom status option when I click settings -> credit options -> process cashback
I have the following custom statuses
– order-collected
– out-for-delivery
– order-delivered
– store-pickupI have tried adding custom filter as below but still no luck, can you please help.
add_filter(‘woo_wallet_process_cashback_status’, ‘woo_wallet_process_cashback_status_callback’);
function woo_wallet_process_cashback_status($status){
$status[‘order-collected’] = ‘Order Collected’;
return $status;
}P.S. I have no knowledge of coding. I can just follow instructions
Many thanks for your help
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Woocommerce custom order status credit’ is closed to new replies.