Title: Apply Filter Button
Last modified: November 10, 2017

---

# Apply Filter Button

 *  Resolved [thnk4](https://wordpress.org/support/users/thnk4/)
 * (@thnk4)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/apply-filter-button/)
 * Good evening,
 * I wanted to change the “Apply Filter” button. More specifically I wanted remove
   the word “Filter” and leave only the word “Apply”.
 * Is that possible ?
    I looked into the plugin files but did not find anything 
   related to this.
 * Thanks in advance for help,
    T4

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [titodevera](https://wordpress.org/support/users/titodevera/)
 * (@titodevera)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/apply-filter-button/#post-9726429)
 * Hi thnk4.
 * You can use the `gettext` filter
 *     ```
       add_filter( 'gettext', function( $translated_text, $text, $domain ){
         if( $domain == 'perfect-woocommerce-brands' && $translated_text == 'Apply filter' )
           $translated_text = 'Apply';
   
         return $translated_text;
       }, 20, 3 );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Apply Filter Button’ is closed to new replies.

 * ![](https://ps.w.org/perfect-woocommerce-brands/assets/icon-256x256.jpg?rev=2912506)
 * [Perfect Brands for WooCommerce](https://wordpress.org/plugins/perfect-woocommerce-brands/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/perfect-woocommerce-brands/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/perfect-woocommerce-brands/)
 * [Active Topics](https://wordpress.org/support/plugin/perfect-woocommerce-brands/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/perfect-woocommerce-brands/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/perfect-woocommerce-brands/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [titodevera](https://wordpress.org/support/users/titodevera/)
 * Last activity: [8 years, 6 months ago](https://wordpress.org/support/topic/apply-filter-button/#post-9726429)
 * Status: resolved