Skip to content

Instantly share code, notes, and snippets.

@geotsiokos
Created October 12, 2019 11:26
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 geotsiokos/9c31282bba00efa97145676d2c5dbfd4 to your computer and use it in GitHub Desktop.
Save geotsiokos/9c31282bba00efa97145676d2c5dbfd4 to your computer and use it in GitHub Desktop.
Modify "Thanks for signing up!" message for new affiliate registrations
add_filter( 'affiliates_thanks_sign_up_text', 'example_affiliates_thanks_sign_up_text' );
function example_affiliates_thanks_sign_up_text( $text ) {
// the default text is this:
$text = '<p>' . esc_html__( 'Thanks for signing up!', 'affiliates' ) . '</p>';
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment