This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_after_password_reset_fields | |
* | |
* Type: action | |
* | |
* Description: Fires after rendering fields in the password reset form. | |
* This hook may be used to add custom fields or display custom content before the password reset form buttons. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_after_form_fields | |
* | |
* Type: action | |
* | |
* Description: Fires before closing tag in the form. | |
* Used in the core to display GDRP and add hidden fields to the form. | |
* May be used to display custom content in the form footer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_after_changing_user_password | |
* | |
* Type: action | |
* | |
* Description: Fires after user change the password. | |
* This hook may be used to add cookies or customize redirect. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_before_{$mode}_form_is_loaded | |
* | |
* Type: action | |
* | |
* Description: Fires before the password reset form is loaded. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-password.php#L239 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_{$type}_form_show_field | |
* | |
* Type: filter | |
* | |
* Description: Change field HTML by field $type. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-fields.php#L4490 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_{$key}_form_show_field | |
* | |
* Type: filter | |
* | |
* Description: Change field HTML by field $key. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-fields.php#L4468 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_form_fields_textarea_settings | |
* | |
* Type: filter | |
* | |
* Description: Change WP Editor options for textarea init. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-fields.php#L2737 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_custom_dropdown_options_parent__{$form_key} | |
* | |
* Type: filter | |
* | |
* Description: Change parent dropdown relationship by $form_key. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-fields.php#L3059 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_custom_dropdown_options_source__{$form_key} | |
* | |
* Type: filter | |
* | |
* Description: Change custom dropdown options source by $form_key. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-fields.php#L3114 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_custom_dropdown_options_source_url__{$form_key} | |
* | |
* Type: filter | |
* | |
* Description: Change custom dropdown options source URL by $form_key. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-fields.php#L3139 |