Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created June 14, 2015 22:25
Show Gist options
  • Save SeanChDavis/02719bbfb3f7d5932a55 to your computer and use it in GitHub Desktop.
Save SeanChDavis/02719bbfb3f7d5932a55 to your computer and use it in GitHub Desktop.
EDD FES Change Vendor Dashboard Login Form Title
function sd_change_fes_login_form_title( $content ) {
$content = str_replace( 'Login', 'Sign In to your Vendor Dashboard', $content );
return $content;
}
add_action( 'fes_login_form_header', 'sd_change_fes_login_form_title', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment