This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
This file contains hidden or 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_user_edit_profile | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the profile form successful submit. | |
| * Used in the core to update member's profile data. | |
| * |
This file contains hidden or 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_reset_password_process_hook | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on reset password form submit after successful validation. | |
| * Used in the core to process a reset password request. | |
| * |
This file contains hidden or 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_reset_password_errors_hook | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on reset password form submit. | |
| * Used in the core to process reset password validation. | |
| * May be used to extend reset password validation. |
This file contains hidden or 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_change_password_process_hook | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on change password form submit after successful validation. | |
| * Used in the core to process a change password request. | |
| * |