Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Product taxonomy in asp_result_groups › Reply To: Product taxonomy in asp_result_groups
Thank you – we made some progress now. We can see the titles of category now. But still, the content and link is not appearing in the result.
You can see the test website here: https://tsw.detypedev.com/
Can you check the code for us, please –
$args = array(
‘s’ => $_POST[‘aspp’],
‘_ajax_search’ => true,
‘post_type’ => array(‘product’),
‘post_status’ => array(‘publish’),
‘posts_limit’ => 5,
‘keyword_logic’ => ‘AND’,
‘post_fields’ => array(
‘title’, ‘ids’,’content’, ‘excerpt’,’url’
),
‘post_tax_filter’ => array(
array(
‘taxonomy’ => ‘product_cat’,
‘include’ => array(50),
)
)
);
$asp_query = new ASP_Query($args);
$groupss = $asp_query->posts;