kailew
Active member
With the new update for me the blacklisting issue is gone, thx @Stuart Wright
This only started happening with the recent addon update.Some tags are not permitted in this forum. Please change the following tags: xxxxxx
InvestigatingWe still suffer this kind of error when adding new tags to existing threads.
This only started happening with the recent addon update.
Can you check if the tag can if it has been limited to a given forum? And provide a screenshot of the config from the tag for that?We still suffer this kind of error when adding new tags to existing threads.
This only started happening with the recent addon update.
This only started happening with the recent addon update.Some tags are not permitted in this forum. Please change the following tags: xxxxxx
I don't have any tags that use this option.Can you check if the tag can if it has been limited to a given forum?
Restrict addition of tag to threads in these forums:
Just the default settings for each tag, none of them has been customized.And provide a screenshot of the config from the tag for that?
What is happening exactly?We still suffer this kind of error when adding new tags to existing threads.
This only started happening with the recent addon update.
No.Are you trying to add a new tag which previously didn't exist?
Yes.Or are you trying to add an existing tag to an existing thread?
screenshot above, but I don't have "None" selected for all the existing tags.If you are having trouble with a specific tag, what does this setting look like for that tag?
Is it reproducible on your side?Ok, investigating
No, I don't have any problems, but @Xon is investigating.Is it reproducible on your side?
This error only shows up if you have debug mode enabled, which is strongly not recommended for a production site.
This feature is related to the 'tag watching', and when the debug flag isn't enabled will just silently fail for non-supported types.
Please start a ticket on my site for full support for AMS/Showcase.
Yup.Aside from the member not receiving notifications when watching the tag, do the tags work as normal for non-supported types?
This isn't reproducing as expected, I'm started a conversation with you to get some more detailsWe still suffer this kind of error when adding new tags to existing threads.
This only started happening with the recent addon update.
- Fix incorrect "Some tags are not permitted in this forum" error when adding an existing tag.
With thanks to those who reported the issue
tag_view
reads unwatch tag when the tag is watched (like default XF watch buttons)? It's a bit confusing for members.<xf:if is="$tag.canWatch()">
<xf:button href="{{ link('tags/watch', $tag) }}" class="button--cta" overlay="true" icon="preview">
{{ phrase('avForumsTagEss_watch_tag') }}
</xf:button>
</xf:if>
<xf:if is="$thread.canWatch()">
<xf:button href="{{ link('threads/watch', $thread) }}" class="button--link"
data-xf-click="switch-overlay"
data-sk-watch="{{ phrase('watch') }}"
data-sk-unwatch="{{ phrase('unwatch') }}">
<xf:if is="{$thread.Watch.{$xf.visitor.user_id}}">
{{ phrase('unwatch') }}
<xf:else />
{{ phrase('watch') }}
</xf:if>
</xf:button>
</xf:if>
This will need doing properly with a new phrase and release by @Xon who develops this for me.@Stuart Wright
Any chance of updating this so the watch button ontag_view
reads unwatch tag when the tag is watched (like default XF watch buttons)? It's a bit confusing for members.
Code:<xf:if is="$tag.canWatch()"> <xf:button href="{{ link('tags/watch', $tag) }}" class="button--cta" overlay="true" icon="preview"> {{ phrase('avForumsTagEss_watch_tag') }} </xf:button> </xf:if>
Watch thread example
Code:<xf:if is="$thread.canWatch()"> <xf:button href="{{ link('threads/watch', $thread) }}" class="button--link" data-xf-click="switch-overlay" data-sk-watch="{{ phrase('watch') }}" data-sk-unwatch="{{ phrase('unwatch') }}"> <xf:if is="{$thread.Watch.{$xf.visitor.user_id}}"> {{ phrase('unwatch') }} <xf:else /> {{ phrase('watch') }} </xf:if> </xf:button> </xf:if>
Fix 'watch tag' button which didn't dynamically update itself like the 'watch thread' button does
We use essential cookies to make this site work, and optional cookies to enhance your experience.