Hi,
I have added one new product field named "Season" to Product Catalog. I want to show this "Season" field value in the autocompletion list of product search. I have seen that the Product No and Product name are displaying using the following html
<div class="dw-search-result-item">
<div class="dw-search-result-picture">
<a class="dw-search-result-url"><img class="dw-search-result-img" alt="" src="" /></a>
</div>
<div class="dw-search-result-productname">
<a class="dw-search-result-productlink"><span class="dw-search-result-name"></span></a>
</div>
<div class="dw-search-number-wrapper">
<!--@Translate(productnumber, "Product no.")-->
<div class="dw-search-result-number"></div>
</div>
So i tried to add html like
<div class="dw-season-date-wrapper">
<!--@Translate(season, "Season")-->
<div class="dw-search-result-season"></div>
</div>
I'm pretty sure it won't help in custom field case.
What should i do to display a custom field value in the autocompletion list of search? It will be great if i get help from anyone to resolve this?