Live search Control with Custom WP Query Loop?

Live search Control with Custom WP Query Loop? I created my own query following this guide:

https://brickslabs.com/adding-any-custom-wp_query-loop-to-bricks-query-loop/

I’m Using:

add_filter( ‘bricks/setup/control_options’, ‘setup_query_controls’);
add_filter( ‘bricks/query/run’, ‘maybe_run_new_query’, 10, 2);
add_filter( ‘bricks/query/loop_object’, ‘setup_post_data’, 10, 3);

Everything works great, except when I select my custom query I’m missing the LIVE search control… does anyone know how I can add that, or can provide an example?

Screenshot 2024-11-07 at 11-43-37 Header (Template)

Thanks

MY ALTERNATIVE SOLUTION: Query 2 Post types? - #2 by dailce

But still wondering if we can do it via the brickslabs tutorial above.