Title: Change dropdown &#039;All&#039; text?
Last modified: August 21, 2016

---

# Change dropdown 'All' text?

 *  Resolved [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/change-dropdown-all-text/)
 * For the full calendar category filter / drop-down, is it possible to change the
   text for the ‘All’ option?
 * [https://wordpress.org/plugins/wp-fullcalendar/](https://wordpress.org/plugins/wp-fullcalendar/)

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

 *  Plugin Support [angelo_nwl](https://wordpress.org/support/users/angelo_nwl/)
 * (@angelo_nwl)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/change-dropdown-all-text/#post-4620999)
 * yes, try this snippet in your theme functions.php
 *     ```
       function em_wpfullcalendar_category_label($taxonomy_args,$taxonomy){
        if ( $taxonomy->name == 'event-categories'){
         $taxonomy_args['show_option_all'] = 'All Cats';
        }
        return $taxonomy_args;
       }
       add_filter('wpmfc_calendar_taxonomy_args','em_wpfullcalendar_category_label',1,2);
       ```
   
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/change-dropdown-all-text/#post-4621019)
 * That’s perfect. Thank you! 🙂
 *  Thread Starter [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * (@iltdevunit)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/change-dropdown-all-text/#post-4621023)
 * I’ll mark this as resolved.

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

The topic ‘Change dropdown 'All' text?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-fullcalendar.svg)
 * [WP FullCalendar](https://wordpress.org/plugins/wp-fullcalendar/)
 * [Support Threads](https://wordpress.org/support/plugin/wp-fullcalendar/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-fullcalendar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-fullcalendar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-fullcalendar/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [iltdevunit](https://wordpress.org/support/users/iltdevunit/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/change-dropdown-all-text/#post-4621023)
 * Status: resolved