Hi there,
Thanks for the proposal. Currently, it’s isn’t possible, but I will consider adding this feature.
If you are familiar with PHP, you can try using the following filter to make customization:
add_filter('dgwt/wcas/search_results/output', function($output){
// Do var_dump($output) to check the data structure
// Find products and get products IDs
// Find categories based on these IDs
// If you display SKU, you can override it and display category name instead of SKU.
// Also, you can display category name instead of a short description
return $output;
});
Best
Damian