Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Filter post titles in live search results › Reply To: Filter post titles in live search results
January 24, 2023 at 1:46 pm
#41070
Keymaster
You should try without the !is_admin() criteria. For ajax requests is_admin() is true, as it acts as a query to the administrator interface.
Alternatively:
if ( !is_admin() || wp_doing_ajax() ) {