<?php
// This applies to the Abandoned Cart Recovery plugin by Addify:
// https://addify.store/product/woocommerce-abandoned-cart-recovery/
// https://woocommerce.com/document/abandoned-cart-recovery/
// Add the following to your (child) theme's functions.php
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( 'addify_acr_carts' == $query->get( 'post_type' ) ) {
$is_main_query = false;
}
return $is_main_query;
}, 10, 2 );