Viewing 1 replies (of 1 total)
  • Hi fearRacious,

    Try adding this bit of code;

    $fields[] = new PMProRH_Field(
    “gender”, // input name, will also be used as meta key
    “select”, // type of field
    array( “profile”=>true, “required”=>false,
    “options”=>array( // <option> elements for select field
    “male”=>”Male”, // <option value=”male”>Male</option>
    “female”=>”Female” // <option value=”female”>Female</option>
    )));

    Hope it helps!

Viewing 1 replies (of 1 total)
  • The topic ‘custom fields not saving the data’ is closed to new replies.