Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created July 4, 2019 04:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/0215b3e43c1a596186b0e654d891a213 to your computer and use it in GitHub Desktop.
Save KaineLabs/0215b3e43c1a596186b0e654d891a213 to your computer and use it in GitHub Desktop.
Profile Completeness : Change Upload Avatar & Cover Message.
<?php
/**
* Profile Completeness : Change Upload Avatar & Cover Message.
*/
function yzc_change_avatar_cover_text( $translated_text ) {
switch ( $translated_text ) {
case 'Please upload an avatar and a cover for your account.' :
$translated_text = 'Please upload an avatar for your account.';
break;
}
return $translated_text;
}
add_filter( 'gettext', 'yzc_change_avatar_cover_text', 30 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment