• Kaizur Ahmed

    (@kaizur-ahmed)


    Hi, can I change the text of subscribe button? I want to write Submit instead of subscribe.

Viewing 1 replies (of 1 total)
  • Plugin Author eventualo

    (@eventualo)

    You can add a filter like this:

    
    function my_easymail_translations ( $translated_text, $untranslated_text, $domain ) {
    
    	if( $untranslated_text == 'Subscribe' && $domain == 'alo-easymail' )  {
    		$translated_text = __( 'Submit' );
    	}
    
    	return $translated_text;
    
    }
    			
    add_filter('gettext', 'my_easymail_translations', 10, 3 );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Change subscribe button’ is closed to new replies.