Viewing 1 replies (of 1 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    To adjust the size of the fields, use CSS.

    To change the register template message, do this:

    function tml_action_template_message( $message, $action ) {
    	if ( 'register' == $action )
    		$message = 'YOUR NEW MESSAGE HERE';
    	return $message;
    }
    add_filter( 'tml_action_template_message', 'tml_action_template_message', 10, 2 );

Viewing 1 replies (of 1 total)

The topic ‘Registration fields’ is closed to new replies.