Tagged: CAPTCHA
Hi,
i want to change the captcha text equation:
Bewijs a.u.b. dat u een mens bent door de volgende vergelijking op te lossen. *
how can i change this dutch text label into another dutch text label using the enfold childtheme?
Hey dennisveeken!
Is your WordPress language set to Dutch? If so then you can edit the /enfold/lang/nl_NL.mo file and search for that text and change it to whatever you need. Make sure to create a copy of it so you can paste it into the /lang/ folder after updating the theme.
Cheers!
Elliott
Hey elliot, can i also do this in my childtheme so i dont have to update all the time?
Hi!
Yes, you can create a folder called “lang” inside the child theme folder then move or copy the language files. Add this in the functions.php file:
add_action('after_setup_theme', 'avia_child_lang_setup');
function avia_child_lang_setup() {
remove_action('after_setup_theme', 'avia_lang_setup');
$lang = get_stylesheet_directory() . '/lang';
load_theme_textdomain('avia_framework', $lang);
}
Best regards,
Ismael
Hi,
How do you edit the nl_NL.mo file? I’m trying to do the exact same thing as dennisveeken.
I tried opening it in Notepad++ or Windows Notepad but these two applications can not read the file. I’m getting weird input and glyphs from the file.
Thanks in advance.
Hi Mike,
.mo – is a binary file, you cannot edit it. Here is an article on how to work with these files.
If you need further assistance please let us know.
Best regards,
Victoria