• Hello,

    At the order confirmation email, there is a text “Delivery schedule: Date” in each product item.Is there way where i can hide this message?

    Thanks
    Kostas

Viewing 2 replies - 1 through 2 (of 2 total)
  • hello i would like to do this too. the message on the email confirmation is confusing for the customer

    great support…..

    I have solved the problem myself, this code in the functions.php file of the childtheme hides all delivery sheduls information

    <?php
    add_action('woocommerce_add_order_item_meta', 'bg_wooCommerceAddOrderItemDataAction', 20, 2);
    
    function bg_wooCommerceAddOrderItemDataAction($item_id, $values)
    {
        wc_delete_order_item_meta( $item_id, 'Delivery schedule' );
    }
    • This reply was modified 4 years, 5 months ago by team88.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Delivery schedule text at email notification’ is closed to new replies.