Hi,
i need to swap Text “Download Invoice” to “Download Receipt”
in functions.php i use:
add_filter( ‘gettext’, ‘change_mec_text’, 20, 3 );
function change_mec_text( $translated_text, $text, $domain ) {
return is_singular(‘mec-events’) && ( $text ==‘Hourly Schedule’ || $translated_text == ‘Veranstaltung buchen’ ) ? ‘Teilnahme buchen’: $translated_text;}
for another swap, when i try to add something else, its not working. Maybe i am too tired now…?!
Please gibe me a little help 
Thanks,
Cy