Okay
  Public Ticket #1740526
Event Filter
Closed

Comments

  • Icho_Tolot started the conversation

    I have about 500 events in my calendar, without a filter on the backend it becomes really painful to use it. Can you please add a simple filter to the event overview page ? Or is there another way ?

  •  799
    Zhivko replied

    Hi,

    We've added pagination to the admin in the latest update.

    There's planned filter as well but it's not implemented yet.


    Stachethemes Developer

  • Icho_Tolot replied

    I checked the pagination , however now its even worse as I have to go through each page to find what I need. Is there a way to turn the pagination off ? 

  •  799
    Zhivko replied

    Add in your theme functions.php file following filter:

    add_filter('stec_admin_events_per_page', function(){
        return 9999;
    });

    Stachethemes Developer

  • Icho_Tolot replied

    Thanks a lot, works great