Hi @SoCalMacGuy ,
If you use Dawn theme. May I suggest to update code these steps:
- Go to Store Online-> theme → edit code
-
Sections/main-search.liquid
-
Follow the screenshot to add code below
{% for product in collections.all.products %}
{% assign metafields = product.metafields %}
{% for metafield in metafields %}
{% if metafield.value contains search.terms %}
- {{ product.title }}
{% endif %}
{% endfor %}
{% endfor %}
-
Sections/predictive-search.liquid
-
Follow the screenshot to add code below
{% for product in collections.all.products %}
{% assign metafields = product.metafields %}
{% for metafield in metafields %}
{% if metafield.value contains predictive_search.terms %}
- {{ product.title }}
{% endif %}
{% endfor %}
{% endfor %}


