Skip to content

Instantly share code, notes, and snippets.

@nikitasinelnikov
Created January 26, 2021 23:16
Show Gist options
  • Save nikitasinelnikov/a4d9364a1574f6c45b24ce18f5d675a6 to your computer and use it in GitHub Desktop.
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
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