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
| // Don't send private messages on the "Enter" keypress. | |
| jQuery(document).ready(function() { | |
| jQuery( document.body ).off( 'keypress', 'textarea.um_message_text' ); | |
| }); |
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_login_redirect_url | |
| * | |
| * Type: filter | |
| * | |
| * Description: Change redirect URL after successful login. | |
| * | |
| * @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/um-actions-login.php#L258 |
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_after_everything_output | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires after the form shortcode is loaded. | |
| * | |
| * @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-shortcodes.php#L819 |
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_after_form | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires before the closing tag in the form. | |
| * May be used to display custom content in the form footer. | |
| * |
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_after_{$mode}_fields | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires after the form fields. | |
| * May be used to display custom content after form fields or add hidden fields. | |
| * |
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_before_{$mode}_fields | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires before the form fields. | |
| * May be used to display custom content before form fields or add hidden fields. | |
| * |
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_before_form | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires after opening tag in the form. | |
| * May be used to display custom content in the form header. | |
| * |
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_registration_for_loggedin_users | |
| * | |
| * Type: filter | |
| * | |
| * Description: Allows to display the registration form for logged in users if TRUE. Default value is FALSE. | |
| * | |
| * @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-shortcodes.php#L686 |
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_shortcode_args_filter | |
| * | |
| * Type: filter | |
| * | |
| * Description: Change arguments on load shortcode. | |
| * Used in the core to unserialize array arguments and change the template in special cases - display 'logout' and 'message' templates. | |
| * |