Support

Account

Home Forums Front-end Issues Changing text of an error message or translation? Reply To: Changing text of an error message or translation?

  • For example in your jquery-js with:

    $(document).ajaxComplete(function() {
        $('.acf-notice p').each(function() {
            var text = $(this).text();
            $(this).text(text.replace('Wert ist erforderlich = OLD MESSAGE', 'Bitte ausfüllen = NEW MESSAGE')); 
        });
    });