Uutiset:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu
Advertisement:

Haun tulos hakusanalle: registration fields

Tuloksien järjestys
#701
SMF 2.0.x Support / Re: New registration emails not sending out..
elokuu 01, 2014, 02:08:27 IP tekijältä Kindred
......  setting the first fields to something other than 0? ......
#702
......  just do it like the login form. where i took the fields name and the hidden field and the action and put  ............  in the registration form.  ......
#703
SMF Coding Discussion / Re: Single registration for site and SMF
toukokuu 10, 2014, 06:36:20 AP tekijältä Dragooon
......  can disable registrations via ACP options (have a look at Admin > Members > ............  Registration) or nuke Register.php entirely to make sure they  ............  additional SMF features such as custom profile fields etc, make sure to do a lot of testing. ......
#704
SMF 2.0.x Support / Re: Problem with registration
maaliskuu 31, 2014, 12:38:52 AP tekijältä newbie2014
......  you would normally set at register. There are 2 fields with that name: one related to polls, the other  ............  you also get this error?  I have a problem with registration too. After I installed SMF 2.0.7 successfully, it  ............  to let users know the successful result of registration? Thank you for the help.   ......
......  something similar to happen again   As for the registration system,  its basically using custom profile  ............  however is not compatible with custom profile fields so people registering from there get an empty  ......
...... /////////////////////////   // Collect all extra registration fields someone might have filled in.  ......
#707
Italiano (Italian) / Re: Mod del sesso
huhtikuu 08, 2014, 02:46:52 IP tekijältä emanuele
......  > core features => abiliti "Advanced profile fields" admin > configurazione > impostazioni e opzioni > ............  profile fields => spunti "show on registration" per il genere. ......
#708
SMF 2.0.x Support / Re: Wargamings OpenID and SMF
maaliskuu 13, 2014, 12:27:18 IP tekijältä Oldiesmann
......  enable OpenID in SMF: Go to Admin -> Members -> Registration -> Settings, check the box next to "Enable users  ............  the ID in the box below the username and password fields at the top of the forum or choose "OpenID" as the  ............ "Authentication method" on the registration form and enter the ID in the "OpenID  ......
#709
SMF 2.0.x Support / Re: Location required at users registration
helmikuu 22, 2014, 12:47:01 IP tekijältä kat
......  Admin>Core features and enable "Advanced Profile Fields" (Don't forget to click "Save", at the bottom)   ............ , go to Admin>Features and options>Profile fields.  Alongside "Location", put a check in "Show on  ......
#710
SMF 2.0.x Support / Re: A Error Reporting In My Forum !
helmikuu 18, 2014, 09:17:28 IP tekijältä GamePersia
...... , $modSettings, $smcFunc;   // Generate a sample registration image.  $context['use_graphic_library'] =  ............ );   obExit(); }  // Show all the custom profile fields available to the user. function  ............  = 'show_custom_profile';   // What about standard fields they can tweak?  $standard_fields = array('icq', ' ............ ', 'website', 'posts', 'warning_status');  // What fields can't you put on the registration page?  $context[ ............ 'fields_no_registration'] = array('posts', ' ............ ();   // Do the active ones first.  $disable_fields = array_flip($standard_fields);  if (!empty($ ............ $_POST['active'] as $value)  if (isset($disable_fields[$value]))  unset($disable_fields[$value]);  } ............ // What we have left!  $changes['disabled_profile_fields'] = empty($disable_fields) ? '' : implode(',',  ............ ($disable_fields));   // Things we want to show on registration?   ............  $reg_fields = array();  if (!empty($_POST['reg']))  {   ............ '] as $value)  if (in_array($value, $standard_fields) && !isset($disable_fields[$value]))  $ ............  = $value;  }  // What we have left!  $changes['registration_fields'] = empty($reg_fields) ? '' : implode(',',  ............ $reg_fields);   if (!empty($changes))  updateSettings($ ............  $listOptions = array(  'id' => 'standard_profile_fields',  'title' => $txt['standard_profile_title'],  ' ............ ' => array(  'function' => 'list_getProfileFields',  'params' => array(  true,  ),  ),  ' ............ %; text-align: center;',  ),  ),  'show_on_registration' => array(  'header' => array(  'value' =>  ............ $txt['custom_edit_registration'],  ),  'data' => array(  'function' =>  ............ ;sa=profile',  'name' => 'standardProfileFields',  ),  'additional_rows' => array(  array(   ............    $listOptions = array(  'id' => 'custom_profile_fields',  'title' => $txt['custom_profile_title'],  ' ............ ' => array(  'function' => 'list_getProfileFields',  'params' => array(  false,  ),  ),  ' ............ ' => array(  'function' => 'list_getProfileFieldSize',  ),  'columns' => array(  'field_name' => ............ 'reverse' => 'placement',  ),  ),  'show_on_registration' => array(  'header' => array(  'value' =>  ............ ;sa=profileedit',  'name' => 'customProfileFields',  ),  'additional_rows' => array(  array(   ............ ($listOptions); }  function list_getProfileFields($start, $items_per_page, $sort, $standardFields) { ............ , $smcFunc;   $list = array();   if ($standardFields)  {  $standard_fields = array('icq', 'msn', 'aim' ............ ', 'website', 'posts', 'warning_status');  $fields_no_registration = array('posts', 'warning_status') ............ ;  $disabled_fields = isset($modSettings['disabled_profile_fields']) ? ............  explode(',', $modSettings['disabled_profile_fields']) : array();  $registration_fields = isset($ ............ ['registration_fields']) ? explode(',', $modSettings[' ............ ']) : array();   foreach ($standard_fields as $field)  $list[] = array(  'id' => $field, ............ ),  'disabled' => in_array($field, $disabled_fields),  'on_register' => in_array($field, $ ............ ) && !in_array($field, $fields_no_registration),  'can_show_register' => ! ............ ($field, $fields_no_registration),  );  }  else  {  // Load all  ............  fields.  $request = $smcFunc['db_query']('', '   ............ , active, placement  FROM {db_prefix}custom_fields  ORDER BY {raw:sort}  LIMIT {int:start}, {int: ............ );  }   return $list; }  function list_getProfileFieldSize() {  global $smcFunc;   $request = $smcFunc[' ............ ]('', '  SELECT COUNT(*)  FROM {db_prefix}custom_fields',  array(  )  );   list ($numProfileFields) = $ ............ ['db_free_result']($request);   return $numProfileFields; }  // Edit some profile fields? function  ............ , enclose, placement  FROM {db_prefix}custom_fields  WHERE id_field = {int:current_field}',   ............ '  SELECT id_field  FROM {db_prefix}custom_fields  WHERE col_name = {string:current_column}',   ............ ['db_query']('', '  UPDATE {db_prefix}custom_fields  SET  field_name = {string:field_name},  ............  $smcFunc['db_insert']('',  '{db_prefix}custom_fields',  array(  'col_name' => 'string', ' ............  there's currently no option to priorize certain fields over others, let's order them alphabetically.  $ ............ ', '  ALTER TABLE {db_prefix}custom_fields  ORDER BY field_name',  array(  ' ............ 'db_query']('', '  DELETE FROM {db_prefix}custom_fields  WHERE id_field = {int:current_field}',   ............  bbc, enclose, placement  FROM {db_prefix}custom_fields  WHERE show_display = {int:is_displayed}   ............ ' => 2,  'not_admin_only' => 3,  )  );   $fields = array();  while ($row = $smcFunc[' ............ ']($request))  {  $fields[] = array(  'colname' => strtr($row['col_name'] ......
......  Files ] [ Delete ] 2. Order Custom Profile Fields 1.1.1 [ Uninstall ] [ List Files ] [ Delete  ............  ] [ Delete ] 15. Double Check your Email in Registration by SmfSimple.com 1.0 [ List Files ] [  ......
#712
SMF 2.0.x Support / Re: how to add name field in registration form
syyskuu 15, 2013, 12:34:14 IP tekijältä Dav999
......  > Core Features, enable Advanced Profile Fields and save. Then click the title of that, and add a  ............  field which is shown on registration......
#713
......  25, 2013, 09:12:33 APYou can use Advanced Profile Fields in Core Features for it.  edit: to complete,  ............ . Check attachment  i went to advancd profile fields in core / did not see radio button options / will  ......
......  is not possible is there away where i can hide registration fields! that way only google+ registration is  ......
......  it point to a pre-filled application form where fields are then entered according to the individual?  ............  like a forum registration, then when it's submitted, have it post to the  ......
#716
Mod Requests / Re: When using admin approval, don't assign an id.
syyskuu 19, 2013, 10:16:55 AP tekijältä Matthew K.
......  that's assuming admin approval is on. The other registration modes might have either similar cases where you  ............ . It just gets more tricky because of how the fields and registration works.  Arantor is completely  ............  would have almost identical if not identical fields as members. When the account "becomes active",  ......
#717
SMF 2.0.x Support / Re: How to edit registration form
elokuu 16, 2013, 05:27:36 AP tekijältä Illori
......  - elokuu 16, 2013, 12:33:41 APLainaanope.., the registration fields are too many what am trying to say is this  ............  Admin> Config> Features and Options> Profile Fields.   but you need to enable advanced profile fields  ......
#718
Scripting Help / Re: Check if username is in the database.
huhtikuu 23, 2013, 10:56:16 IP tekijältä MrLeN
......  session values.  I have also modified the SMF registration page so that the username and email fields are  ......
#719
Italiano (Italian) / Re: problema caricare mod..
joulukuu 21, 2012, 07:44:03 AP tekijältä Vittorio
......  correct it by clicking this text.';<br />$txt['registration_disabled'] = 'Sorry, registration is currently  ............ .';<br />$txt['registration_no_secret_question'] = 'Sorry, there is no secret  ............  the user but did not fill in the subject/message fields';<br /><br />$txt['cannot_connect_doc_site'] = ' ......
#720
News and Updates / Re: Simple Machines Forums attacks
heinäkuu 10, 2011, 08:38:56 IP tekijältä Dejv
......  to the not-approved profiles but also to some new registrations.  Thanks, I will have a look in the custom  ............  fields. ... I guess this is not in the 1.1.14 core    ......
Advertisement: