Created
June 14, 2015 22:25
-
-
Save SeanChDavis/02719bbfb3f7d5932a55 to your computer and use it in GitHub Desktop.
EDD FES Change Vendor Dashboard Login Form Title
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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