Need some help with Metafields in Search and a Theme Code insertion

Hi @SoCalMacGuy ,

If you use Dawn theme. May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Sections/main-search.liquid

  2. 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 %}

  1. Sections/predictive-search.liquid

  2. 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 %}