How to change submit button text in wp comments?

Hi,

A simple question. How can I change the “Submit” button in comments to “Lähetä”?

-Timo

Hi Timo,

Thank you for writing in, you can add this on your child theme’s functions.php file.

add_filter('gettext', 'translate_text_to_germen', 20, 3);

function translate_text_to_germen($ttxt, $txt, $d) {

   switch ($txt) {
      case 'Submit':
         return 'Lähetä'; // Change text here
         break;
      
      case 'Leave a Reply':
         return 'Leave a Reply Mate!'; // Change text here
         break;
   }

   return $ttxt;

}

If you don’t have a child theme yet, please follow this post (How To Setup Child Themes)

Hope it helps,
Cheers!

2 Likes

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.