Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    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

    (@iltdevunit)

    That’s perfect. Thank you! ??

    Thread Starter iltdevunit

    (@iltdevunit)

    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.