Title: Change Button Text
Last modified: April 7, 2018

---

# Change Button Text

 *  Resolved [Test](https://wordpress.org/support/users/scun10/)
 * (@scun10)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/change-button-text-33/)
 * Hey there, I saw there was an upgrade that provided info on how to change the
   text on the submit button.
 * I’m wondering if someone can simply explain to me what file I need to edit to
   change it from Apply Filters to Search etc.?
 * I would expect it to use the code below, but can’t find where this is located
   in order to edit it.
 * <button type=”submit” class=”beautiful-taxonomy-filters-button”>Apply filter</
   button>

Viewing 1 replies (of 1 total)

 *  Plugin Author [Jonathandejong](https://wordpress.org/support/users/jonathandejong/)
 * (@jonathandejong)
 * [8 years ago](https://wordpress.org/support/topic/change-button-text-33/#post-10184981)
 * Hi [@scun10](https://wordpress.org/support/users/scun10/)
 * You should add this in either a custom plugin or your themes functions.php
 *     ```
       function modify_filter_button($string){
   
           return __( 'Search' );
       }
   
       add_filter('beautiful_filters_apply_button', 'modify_filter_button', 10, 1);
       ```
   
 * Best of luck!

Viewing 1 replies (of 1 total)

The topic ‘Change Button Text’ is closed to new replies.

 * ![](https://ps.w.org/beautiful-taxonomy-filters/assets/icon-256x256.png?rev=1654967)
 * [Beautiful taxonomy filters](https://wordpress.org/plugins/beautiful-taxonomy-filters/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/beautiful-taxonomy-filters/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/beautiful-taxonomy-filters/)
 * [Active Topics](https://wordpress.org/support/plugin/beautiful-taxonomy-filters/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/beautiful-taxonomy-filters/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/beautiful-taxonomy-filters/reviews/)

## Tags

 * [Button text](https://wordpress.org/support/topic-tag/button-text/)

 * 1 reply
 * 2 participants
 * Last reply from: [Jonathandejong](https://wordpress.org/support/users/jonathandejong/)
 * Last activity: [8 years ago](https://wordpress.org/support/topic/change-button-text-33/#post-10184981)
 * Status: resolved