Hi,
need a little hint: i need to change the Headline of the schedule to somthimg else. i know there´s a solution somewhere around here, but i cant find it back…
cheers,
Cy.

THANK YOU!!! Topic was closed!!!
Hi,
need a little hint: i need to change the Headline of the schedule to somthimg else. i know there´s a solution somewhere around here, but i cant find it back…
cheers,
Cy.

THANK YOU!!! Topic was closed!!!
Hi @cyrock,
Thanks for reaching out.
It’s part of the skin and should be translatable. Its either using translation plugin and translate it with mec textdomain. Or add this code to your child theme’s functions.php
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 == 'Stundenplan' ) ? 'YOUR PREFERRED TEXT': $translated_text;
}
You just need to change the YOUR PREFERRED TEXT with your desired one. And please change 'Stundenplan' accordingly, I’m not really sure if they really are capitalized or not and I can’t find the site where it’s displayed. So please match the correct word and capitalization (It only looks capitalized in your screenshot due to CSS).
Thanks!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.