Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #579549

    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?

    #580045

    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

    #580311

    Hey elliot, can i also do this in my childtheme so i dont have to update all the time?

    #580788

    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

    #768041

    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.

    #768324

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.