The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/printthread.php(287) : eval()'d code 2 errorHandler->error
/printthread.php 287 eval
/printthread.php 117 printthread_multipage



UserSpice
custom fields - Printable Version

+- UserSpice (https://userspice.com/forums)
+-- Forum: General (https://userspice.com/forums/forumdisplay.php?fid=20)
+--- Forum: UserSpice 5 - Roadmapping the Future (https://userspice.com/forums/forumdisplay.php?fid=31)
+--- Thread: custom fields (/showthread.php?tid=949)

Pages: 1 2 3 4


custom fields - famproent - 05-22-2018

Ok I'm back the new fields are not going into the db. I added the columns. Help Please.


custom fields - Brandin - 05-22-2018

You need your update statement:
$db->update('users',$theNewId,['column' => $value]);


custom fields - famproent - 05-22-2018

What file do I place it in? I'm using _join.php


custom fields - Brandin - 05-22-2018

You don't have to modify the views/_join at all.

You add your extra form fields to:
additional_join_form_fields.php

And you add the PHP we gave you here:
during_user_creation.php


custom fields - famproent - 05-24-2018

Thank You Your The Best. Great program. I have told everyone I know about it. Also the support is GREAT!!!!!


custom fields - ebsjruiz - 06-22-2018

How do you suggest adding new fields when creating users manually? I do not let my users register


custom fields - Brandin - 06-22-2018

Add this to admin_users.php before the Send Email checkbox.

Code:
<?php include($abs_us_root.$us_url_root.'usersc/scripts/additional_join_form_fields.php'); ?>

The SQL is included by default.


custom fields - ebsjruiz - 06-22-2018

Ok so in users/admin_user.php? Should I copy to usersc?


custom fields - Brandin - 06-22-2018

admin_users.php - and yes.


custom fields - ebsjruiz - 06-25-2018

So how do you ensure these fields are be included in editing users?