luanne

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 85 total)
  • Author
    Posts
  • in reply to: registration forms #194544
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194506
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194418
    luanne
    Participant

    That did the trick – thank you!

    in reply to: registration forms #194371
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194319
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194294
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194259
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194184
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194135
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194115
    luanne
    Participant
    This reply has been marked as private.
    in reply to: registration forms #194087
    luanne
    Participant
    This reply has been marked as private.
    in reply to: vendor dashboard issues #193129
    luanne
    Participant
    This reply has been marked as private.
    in reply to: vendor dashboard issues #193115
    luanne
    Participant
    This reply has been marked as private.
    in reply to: vendor dashboard issues #193046
    luanne
    Participant

    Hello again, I found the issue.
    I had previously had the problem of having duplicate emails being sent to the customer – one for the order, and one for the sub-order. You gave me this code to add to my theme functions php, but now the customer doesn’t get any of these emails, but the admin. and vendor’s do. When I remove this code, the customer will get the (now single) emails, but the admin. and vendor won’t receive any. The new order email setting in Woocommerce is set as default: admin. email.

    add_filter( ‘woocommerce_email_recipient_customer_refunded_order’, ‘disable_email_for_sub_order’, 10,3 );
    add_filter( ‘woocommerce_email_recipient_customer_completed_order’, ‘disable_email_for_sub_order’, 10,3 );
    add_filter( ‘woocommerce_email_recipient_customer_on_hold_order’, ‘disable_email_for_sub_order’, 10,3 );

    add_filter( ‘woocommerce_email_recipient_customer_processing_order’, ‘disable_email_for_sub_order’, 10,3 );
    function disable_email_for_sub_order( $recipient, $order, $object ){
    if( wp_get_post_parent_id( $order->get_id() ) ){
    return $recipient;
    } else {
    return;
    }
    }

    in reply to: vendor dashboard issues #193045
    luanne
    Participant

    The Woocommerce email settings look like they are right. At least I can manually send the customer a new order email from the ‘orders’ page until I can fix the problem sometime down the road.
    Thanks!

Viewing 15 posts - 1 through 15 (of 85 total)