Module Flex Block or Loop Doesn't recognize Filters

Posted in: Newspaper
Post count: 15

Hello, I am having trouble getting the modules to recognize filters from WooCommerce taxonomies.

https://core-security.com/techservices/ will display the products and the filters on the left side work because their url is: ?tdb_tax_pa_brand=core

but the taxonomies within the module when clicked don’t work: ?taxonomy=pa_key-features&term=nda-compliance

Please assist.

Thank you!

Post count: 21065

Hello !

I will add this bug on our investigation list!

Thank you !

Post count: 15

In addition going to: https://core-security.com/techservices/product-category/camera-technology-service/

doesn’t quite filter the products.

Post count: 15

I added;

//Add Products to Category
function custom_post_type_cat_filter($query) {
if ( !is_admin() && $query->is_main_query() ) {
if ($query->is_category()) {
$query->set( 'post_type', array( 'product' ) );
}
}
}

add_action('pre_get_posts','custom_post_type_cat_filter');

and still can’t quite get it to filter.

Post count: 15

Thank you!!

Would you be able to share how we could display prices?

Post count: 15

Sorry, one more lol. The Module reviews are unhooked from Woocommerce reviews as well.

Post count: 15

Are there any updates?

Post count: 21065

Hello!

Our developers are aware of this issue, and we will try to provide a fix in one of the next updates.

Thank you so much for your understanding!

Viewing 8 posts - 1 through 8 (of 8 total)
The forum ‘Newspaper’ is closed to new topics and replies.