• Hello, Eventualo.

    I’m trying to replace your newsletter standard radio buttons and check buttons with images of my choice with no success.

    Do you have any hints or tutorials on how this is done?

    Thanks.

    Marco.

    P.S. When a wrong email address is inserted, your plugin still gives the wrong text “e-email” instead of “e-mail.”

    https://www.ads-software.com/plugins/alo-easymail/

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

    (@eventualo)

    Sorry for delay, I read you solved anyway.
    About your P.S., you can replace “e-email” with “email” or “e-mail” adding this code (I’ll include in next plugin release):

    function my_alo_easymail_gettext ( $translated_text, $untranslated_text, $domain ) {
    
    	if( $domain == 'alo-easymail' )  {
    		$translated_text = str_replace( 'e-email', 'email', $translated_text );
    	}
    
    	return $translated_text;
    
    }
    
    add_filter('gettext', 'my_alo_easymail_gettext', 20, 3 );

Viewing 1 replies (of 1 total)
  • The topic ‘Styling radio and check buttons’ is closed to new replies.