<?php
/** if facetwp is identifying the wrong query in elementor
** add a custom query id 'block_facet' to your query settings in the element
** to NOT have facetwp identify it as the main query
** https://developers.elementor.com/custom-query-filter/
**/
add_action( 'elementor/query/block_facet', function( $query ) {
$query->set( 'facetwp', false );
} );