Plugin Author
Brecht
(@brechtvds)
Looks like you’ve already found the answer. It’s indeed possible to change some of those things in the Template Editor: https://help.bootstrapped.ventures/article/53-template-editor
All other text can also be “translated” through our translation files: https://help.bootstrapped.ventures/article/128-translating-text-in-the-plugin
We recommend using Loco Translate for doing this, as it makes things very easy, but you could also use an editor like PoEdit if you don’t want to install that plugin.
I used this function
function recipeplugin_change_text( $translated_text ) {
if ( $translated_text == ‘minutes’ ) {
$translated_text = ‘m’;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘recipeplugin_change_text’, 20 );