• Resolved agstudio

    (@agstudio)


    Hi, is it possible to add product category for search results? I mean, for products search results.

Viewing 1 replies (of 1 total)
  • Plugin Author Damian Góra

    (@damian-gora)

    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

Viewing 1 replies (of 1 total)
  • The topic ‘Show category for product result’ is closed to new replies.