Hey.
thanks for your help.
I added the following code, as you requested:
{% for product in collections.all.products %}
{% assign metafields = product.metafields.mm-google-shopping.custom_label_0 %}
{% for metafield in metafields %}
{% assign value = metafield[1] %}
{% if metafield.value contains search.terms %}
- {{ product.title }}
{% endif %}
{% endfor %}
{% endfor %}
I also tried it without the “key” of the variable and only added the namespace, but that did not work either.