Tag Essentials - with AI auto tagging and XFRM support

Tag Essentials - with AI auto tagging and XFRM support [Paid] 2.6.8

No permission to buy (£35.00)
We still suffer this kind of error when adding new tags to existing threads.
Some tags are not permitted in this forum. Please change the following tags: xxxxxx
This only started happening with the recent addon update.
 
We 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?
 
  • Like
Reactions: rdn
Edit...

We still suffer this kind of error when re-using existing tags in existing threads.
Some tags are not permitted in this forum. Please change the following tags: xxxxxx
This only started happening with the recent addon update.
 
We still suffer this kind of error when adding new tags to existing threads.

This only started happening with the recent addon update.
What is happening exactly?
Are you trying to add a new tag which previously didn't exist?
Or are you trying to add an existing tag to an existing thread?
If you are having trouble with a specific tag, what does this setting look like for that tag?
1.jpg

[Edit : we cross posted. Ok, investigating].
 
Are you trying to add a new tag which previously didn't exist?
No.
Or are you trying to add an existing tag to an existing thread?
Yes.
If you are having trouble with a specific tag, what does this setting look like for that tag?
screenshot above, but I don't have "None" selected for all the existing tags.
Should I select (None) for all the existing tags for this to work as expected?

It's doable via SQL query as I have 43k tags :|.
 
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.

Aside from the member not receiving notifications when watching the tag, do the tags work as normal for non-supported types?
 
I've installed the Bug fix, but the half of my several 100 tags now have the "Restrict Addition" setting. It costs a lot of time to revert this manually ... please, I need a solution.
 
@Stuart Wright

Any chance of updating this so the watch button on tag_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>
 
@Stuart Wright

Any chance of updating this so the watch button on tag_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>
This will need doing properly with a new phrase and release by @Xon who develops this for me.
 
Back
Top Bottom