Title: Change text button
Last modified: July 6, 2023

---

# Change text button

 *  Resolved [Olivier Behot](https://wordpress.org/support/users/olivier-behot/)
 * (@olivier-behot)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/change-text-button-7/)
 *     ```wp-block-code
       Good morning,
       I would like to modify the text of the sign up button. How to do ?
       Thank you for your help
       ```
   
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fchange-text-button-7%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Muhammad Arslan](https://wordpress.org/support/users/wparslan/)
 * (@wparslan)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/change-text-button-7/#post-16877037)
 * Hey [@olivier-behot](https://wordpress.org/support/users/olivier-behot/)
 * If you want the register button on the register page, that is not possible with
   a designated hook.
 * You can use “gettext” hook though.
 *     ```wp-block-code
       add_filter( 'gettext', 'loginpress_change_keyword' );
   
       /**
         * Change Register link text on the login form
         *
         * @param $text string 
         * @return $text string
        */
       function loginpress_change_keyword( $text ) {
   
           $text = str_ireplace( 'Register', 'Sign Up Now', $text );
   
           return $text;
       }
       ```
   
 * Kindly copy and paste the following in the functions.php file of your theme.
 * Here is the resulted output: [Helping screencast](https://d.pr/v/94Gqnk)
 * Have a nice day
 *  Thread Starter [Olivier Behot](https://wordpress.org/support/users/olivier-behot/)
 * (@olivier-behot)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/change-text-button-7/#post-16877215)
 * Thx a lot !
 * Have a nice day toot 😉

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Change text button’ is closed to new replies.

 * ![](https://ps.w.org/loginpress/assets/icon-256x256.png?rev=3005027)
 * [LoginPress | wp-login Custom Login Page Customizer](https://wordpress.org/plugins/loginpress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/loginpress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/loginpress/)
 * [Active Topics](https://wordpress.org/support/plugin/loginpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/loginpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/loginpress/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Olivier Behot](https://wordpress.org/support/users/olivier-behot/)
 * Last activity: [3 years, 1 month ago](https://wordpress.org/support/topic/change-text-button-7/#post-16877215)
 * Status: resolved