• Hi
    Can you please give us one example for Select box, I want to add country and state drop down in Registration form, but i can’t get any example for select box in TML.

    Thanks
    Ahir

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

    (@jfarthing84)

    
    tml_add_form_field( 'register', 'country', array(
    	'type' => 'dropdown',
    	'label' => 'Country',
    	'options' => array(
    		'US' => 'United States',
    		'CA => 'Canada',
    	),
    	// The selected option
    	'value' => tml_get_request_value( 'country' ),
    ) );
    
Viewing 1 replies (of 1 total)

The topic ‘extra fields Select box at registration page’ is closed to new replies.