Skip to Content Skip to Menu

is there a way to use reset password with custom field?

  • krileon
  • krileon
  • ONLINE
  • Posts: 48444
  • Thanks: 8279
  • Karma: 1443
6 years 6 months ago #303835 by krileon

where is compeelet list of this type of substitutions like this [post_checkemail] ?

There isn't. It comes from the HTML form POST data. Use your browsers developer tools (press F12) to observe network traffic to see what data is sent if you need a specific POST value.

only my problem is how to insert new input?

Act on the onLostPassForm trigger in CB Auto Actions using a Code action. Set Method to HTML then under Output be sure to return an array of label, input, and input name. Example as follows.

Global
Trigger: onLostPassForm
Type: Code
User: Automatic
Access: Everybody
Action
Method: HTML
Code: INPUT_HTML_HERE
Output
Display: return
Layout:
Code:
return array( CBTxt::T( 'INPUT_LABEL_HERE' ), $content, 'INPUT_NAME_HERE' );
Method: PHP

You'll still need to work out adding the necessary jQuery to allow the form to submit/validate, but the above will add an input to the forgot login form fine.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

  • saman2
  • saman2
  • ONLINE
  • Posts: 404
  • Thanks: 7
  • Karma: -1
6 years 6 months ago #303847 by saman2
is it possible to get [post_checkemail] and edit it's value and then send to CB ?
i want stay between forgot login form and CB for edit [post_checkemail] value.

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48444
  • Thanks: 8279
  • Karma: 1443
6 years 6 months ago #303854 by krileon

is it possible to get [post_checkemail] and edit it's value and then send to CB ?

The below triggers are a part of the forgot login process. You can explore using them however you like to figure out how to implement your custom forgot login solution.

Triggers directly at the top of the forgot login process before any action has taken place.
Code:
$_PLUGINS->trigger( 'onStartNewPassword', array( &$checkusername, &$confirmEmail ) );

Triggers directly before the forgot username email is sent.
Code:
$_PLUGINS->trigger( 'onBeforeUsernameReminder', array( $user, &$subject, &$message ) );

Triggers directly after the forgot username email is sent.
Code:
$_PLUGINS->trigger( 'onAfterUsernameReminder', array( $user, &$res ) );

Triggers directly before password reset process begins.
Code:
$_PLUGINS->trigger( 'onBeforeNewPassword', array( $user, &$newpass, &$subject, &$message ) );

Triggers directly before password is actually reset and before email.
Code:
$_PLUGINS->trigger( 'onNewPassword', array( $user, $newpass ) );

Triggers after the password has reset and email has been sent.
Code:
$_PLUGINS->trigger( 'onAfterPasswordReminder', array( $user, $newpass, &$res ) );

All reference variables can be of course modified by reference in a Code action using PHP or in Output using PHP as long as you've specified them as references under the Parameters tab. For a list of triggers and their variables as shown above please read the below documentation carefully.

www.joomlapolis.com/documentation/279-community-builder/tutorials/18358-using-cb-triggers


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum