Created
January 26, 2021 23:16
-
-
Save nikitasinelnikov/a4d9364a1574f6c45b24ce18f5d675a6 to your computer and use it in GitHub Desktop.
Ultimate Member: Add reset filters and search button. Just clear URL and redirect to the fresh member directory URL
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
function um_custom_reset_member_directory( $args ) { | |
?> | |
<a href="<?php echo um_get_core_page( 'members' ) ?>" class="um-button um-alt"><?php _e( 'Reset', 'ultimate-member' ) ?></a> | |
<a> | |
<?php | |
} | |
add_action( 'um_members_directory_head', 'um_custom_reset_member_directory', 10, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment