• Resolved kevllar

    (@kevllar)


    Is it possible to change the text in the email that is sent? In my case we are not gift wrapping but we are including a thank you card. There is a line item in the invoice email that says: Gift wrapper: I would like to change this to “Send as a Gift”.

    Thank you

Viewing 1 replies (of 1 total)
  • Plugin Author Pexle Chris

    (@pexlechris)

    At this time there is no way to do it with settings.

    In the future, ?ε may create a field in the Settings in order to could change it from Dashboard…

    Until then, you can use the wordpress api instead:

    add_filter('gettext_gift-wrapping-for-woocommerce', function($translation, $text){
        if( $text == 'Gift wrapper' ){
            return 'my_text';
        }
        return $translation;
    }, 10, 2);
Viewing 1 replies (of 1 total)
  • The topic ‘How to change “Gift Wrapper: ” label in email?’ is closed to new replies.