• Resolved JapeNZ

    (@japenz)


    Hi there,

    Is it possible to change the text in customer emails from “Availability date:” to “Release date:”.

    Thank you for your help!

    • This topic was modified 6 months, 1 week ago by JapeNZ.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Carlos M

    (@cjmora)

    Hi @japenz,
    Update the plugin to the latest version (3.11.0). Then, include the following code in the functions.php file of your child theme or use a Code Snippets plugin:

    if ( ! function_exists( 'ywpo_change_availability_date_label' ) ) {
    add_filter( 'ywpo_order_item_release_date_label', 'ywpo_change_availability_date_label' );
    function ywpo_change_availability_date_label() {
    return 'Release date:';
    }
    }
    Thread Starter JapeNZ

    (@japenz)

    Hi @cjmora,

    Perfect, thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Change email text’ is closed to new replies.