• Resolved bitma

    (@bitma)


    I am trying to use Cash on Delivery payment method with WooCommerce Subscriptions. But on renewal the order gets the status “Pending payment” (and the subscription goes “on-hold) I would like the order to be “Processing” status.

    I tried this snippet but it doesn’t seem to work with subscriptions renewal orders:

    add_filter( 'woocommerce_cod_process_payment_order_status', 'change_cod_payment_order_status', 10, 2 );
    function change_cod_payment_order_status( $order_status, $order ) {
        return 'processing';
    }

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Cash on Delivery payment method with WooCommerce Subscriptions’ is closed to new replies.