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!
In addition going to: https://core-security.com/techservices/product-category/camera-technology-service/
doesn’t quite filter the products.
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.
Thank you!!
Would you be able to share how we could display prices?
Sorry, one more lol. The Module reviews are unhooked from Woocommerce reviews as well.