How can I remove a spam page from my website index?

Thanks @Allan-EP , I’m still stumped and hesitant to do this w/o guidance since the

{{ collection.title | split: ‘|’ | first }}

is already wrapped in an if/then for {% if settings.enable_multilang %} as seen below:

{% if settings.enable_multilang %}

{{ collection.title | split: '|' | first }} {{ collection.title | split: '|' | last }}

{% else %}

{{ collection.title | split: '|' | first }}

{% endif %}

If you have time to type the whole thing out for me, I’d really appreciate it. I’ve seen my indexed vs. index drop a bit since I added the “no index” code below on 12/7 but it’s been a month and I didn’t have the results that @Egle has had where the indexed pages have dropped back to normal. Mine are still at 1.5M indexed. They should be 4K. {%- if request.path == ‘/collections/vendors’ and collection.all_products_count == 0 -%}

{%- endif -%}