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!