Darren

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Auto Processing (via Pay Pal) #750253
    Darren
    Participant

    That worked a charm thank you, thank you Barry 🙂
    – For others with this issue, simple solution is copy this into your theme functions.php file (EXERCISE CAUTION WHEN OVERRIDING CODE)

    /**
    * Auto Complete all WooCommerce orders.
    * Add to theme functions.php file
    */

    add_action( ‘woocommerce_thankyou’, ‘custom_woocommerce_auto_complete_order’ );
    function custom_woocommerce_auto_complete_order( $order_id ) {
    global $woocommerce;

    if ( !$order_id )
    return;
    $order = new WC_Order( $order_id );
    $order->update_status( ‘completed’ );
    }

    in reply to: Auto Processing (via Pay Pal) #749090
    Darren
    Participant

    That is correct! Once a customer successfully purchases a ticket via PayPal it needs to auto complete and send them a ticket. At the moment it’s not doing this.

    in reply to: Ticket Emails not being sent #748723
    Darren
    Participant

    My issue is related as the ticket doesn’t get sent either (due to order not being automatically processed)… maybe this is what is happening to you too? Anyways I have created my own discussion. Good luck!

    in reply to: Ticket Emails not being sent #748445
    Darren
    Participant

    I have been struggling for hours now. I can’t get wootickets to auto process payments from Pay pal. I have added the identity token, setup IPN and still no luck. Please help!

Viewing 4 posts - 1 through 4 (of 4 total)