Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
just remove the link from the tag in thread view if less than 2 posts attributed to the tag. trying to control crawl budget.Are you looking for a specific tag or basically any post with a single tag, you'd not be able to click it?
<a href="{{ link('tags', $tag) }}" class="tagItem tagItem--tag_{$tag.tag_url}" dir="auto">
{{ $highlightTerm ? highlight($tag.tag, $highlightTerm) : $tag.tag }}
</a>
<xf:if is="count($tags) ==1">
<span class="tagItem tagItem--tag_{$tag.tag_url}" dir="auto">
{{ $highlightTerm ? highlight($tag.tag, $highlightTerm) : $tag.tag }}
</span>
<xf:else />
<a href="{{ link('tags', $tag) }}" class="tagItem tagItem--tag_{$tag.tag_url}" dir="auto">
{{ $highlightTerm ? highlight($tag.tag, $highlightTerm) : $tag.tag }}
</a>
</xf:if>
<xf:if is="$tags">
<xf:if is="count($tags) ==1">
<xf:foreach loop="$tags" value="$tag">
<span class="tagItem tagItem--tag_{$tag.tag_url}" dir="auto">
{{ $highlightTerm ? highlight($tag.tag, $highlightTerm) : $tag.tag }}
</span>
</xf:foreach>
<xf:else />
<xf:foreach loop="$tags" value="$tag">
<a href="{{ link('tags', $tag) }}" class="tagItem tagItem--tag_{$tag.tag_url}" dir="auto">
{{ $highlightTerm ? highlight($tag.tag, $highlightTerm) : $tag.tag }}
</a>
</xf:foreach>
</xf:if>
<xf:else />
{{ phrase('none') }}
</xf:if>