Filter Collection By Specific Tags - Flow Theme

Is there a way you can tell Shopify which tags you want to show as filterable options on the collection pages? For example to only display tags with FP, Candle

We are currently using the Flow Theme. A sample of the code is listed below.

Thanks in advance Paul

template–collection.liquid

{{ 'collections.filters.title_tags' | t }}
>
{{ 'tag' | link_to_tag: 'tag' }}"
{% if collection.handle %} {% elsif collection.products.first.type == collection.title %} {% elsif collection.products.first.vendor == collection.title %} {% endif %}

{% endif %}

{% if section.settings.collection-show-sort-by %}

{% assign sort_by_keys = selected_keys | split: ‘,’ %}
{% assign sort_by_labels = selected_labels | split: ‘,’ %}

{{ 'collections.sorting.title' | t }}
    {% assign current_key = collection.sort_by | default: collection.default_sort_by | escape %} {% for key in sort_by_keys %}
  • {% assign full_label = 'collections.sorting.' | append: sort_by_labels[forloop.index0] %} {{ full_label | t }}
  • {% endfor %}
{{ 'collections.sorting.title' | t }}
{% endif %}