Skip to content

Instantly share code, notes, and snippets.

@scottopolis
Last active September 23, 2020 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottopolis/666a48abd5a0be6432f99b62e7c6b5d0 to your computer and use it in GitHub Desktop.
Save scottopolis/666a48abd5a0be6432f99b62e7c6b5d0 to your computer and use it in GitHub Desktop.
Filter AppPresser Welcome Message
<?php
// put this code in a plugin
add_filter( 'appp_login_success', 'appp_filter_welcome_message', 10, 2 );
function appp_filter_welcome_message( $data, $user_id ) {
return "Welcome to our app user " . $user_id . "!"; // must be a string, no HTML
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment