Changing the "Processing" message
-
I’ve tried to use the code you’ve provided to change the “Processing” message, but it is not working. I try to guess the variable name, based on the “Submit” code with no success.
Here what I’ve tried:
function mc_change_processing_text($processing) {
$submit = str_replace(“Processing”, “Processando”, $processing);
return $processing;
}add_filter(‘osd_mc_forms_1’, ‘mc_change_procesing_text’, 10, 1);
add_filter(‘osd_mc_forms_2’, ‘mc_change_procesing_text’, 10, 1);
add_filter(‘osd_mc_forms_3’, ‘mc_change_procesing_text’, 10, 1);
add_filter(‘osd_mc_forms_4’, ‘mc_change_procesing_text’, 10, 1);Would appreciate if you could help me fix this code.
Regards,
Paulo Tebet
- The topic ‘Changing the "Processing" message’ is closed to new replies.