diff --git a/public_html/wp-content/mu-plugins/camptix-tweaks/camptix-tweaks.php b/public_html/wp-content/mu-plugins/camptix-tweaks/camptix-tweaks.php
index d03f40691..3e59f5df5 100644
--- a/public_html/wp-content/mu-plugins/camptix-tweaks/camptix-tweaks.php
+++ b/public_html/wp-content/mu-plugins/camptix-tweaks/camptix-tweaks.php
@@ -1095,7 +1095,11 @@ function add_show_ticket_type_filter() {
$filter = isset( $_GET['tix_show_ticket_type'] ) ? $_GET['tix_show_ticket_type'] : '';
- $all_tickets = get_posts( array( 'post_type' => 'tix_ticket' ) );
+ // Set posts_per_page to -1 so we show them all.
+ $all_tickets = get_posts( array(
+ 'post_type' => 'tix_ticket',
+ 'posts_per_page' => -1,
+ ) );
?>