Removed Unnecessary Tracking

This commit is contained in:
Christopher Allford 2024-08-31 14:28:32 -07:00
parent 40b167fb41
commit 2dff8ec574
No known key found for this signature in database
GPG Key ID: 80E44C778F08A88E
1 changed files with 0 additions and 5 deletions

View File

@ -247,7 +247,6 @@ class WC_Product_Collection_Block_Tracking {
$filters = array(
'inherit' => 'no',
'order-by' => 'no',
'related-to' => 'no',
'on-sale' => 'no',
'stock-status' => 'no',
'handpicked' => 'no',
@ -304,10 +303,6 @@ class WC_Product_Collection_Block_Tracking {
$filters['handpicked'] = 'yes';
}
if ( ! empty( $query_attrs['woocommerceRelatedTo'] ) ) {
$filters['related-to'] = 'yes';
}
if ( ! empty( $query_attrs['search'] ) ) {
$filters['keyword'] = 'yes';
}