Tag Essentials [Deleted]

"New Posts" page ( /find-new/posts ) is giving a modal pop-up 404 not found error every time it's loaded, with the new version.
There's a couple of odd things with this: I didn't do anything to that route at all, just edited a template. It shouldn't have any effect on the php side. Also, that page doesn't usually pop up in a modal so it's odd that it's delivering the 404 in a modal rather than a full page. Do you have an add-on that does something here? There could be a conflict somehow I suppose.

Working good on my side.

Like it on forum thread list, but not looking good in thread list when listing new posts
I think it looks the exact same in both places, which makes sense. Do yours look different or do you think that it just shouldn't be on the find new posts page?

@Daniel Hood

1) In the latest version, does the tags display below the resource list similar to thread list?
2) Is it possible to create pre-defined tags by category.
I responded to your private message but neither of these are features.
 
Minor aesthetic issue.

When using this add-on, if a member is viewing a given tag their online status shows as "Viewing unknown page:"
viewing-unknown-page.webp

Default message should be just a generic "Viewing tags:" which is the case when the add-on is disabled:
stock-viewing-tags.webp


My feature request would be to have it so it will be: "Viewing tag x" (where x is the name of the tag)

Otherwise if too much trouble, just fixing it so it says "Viewing tags" again would be fine. :)
 
Fixed for the next release. Thanks for reporting it.

If anyone feels like applying the fix themselves, open /library/TagEss/XenForo/ControllerPublic/Tag.php and change
PHP:
return $this->responseReroute(__CLASS__, 'tag');
to
PHP:
return $this->responseReroute('XenForo_ControllerPublic_Tag', 'tag');
 
Is it possible to add a "select all" and checkboxes to the tag management page? I have ended up with 8 pages of spam tags that I'd like to get rid of. Currently after I delete each tag it takes me back to page one, so it's a tedious process... :)
I agree that.

Can you please add the mass manage tags with select one by one ticks and select all button ? @Daniel Hood
 
"New Posts" page ( /find-new/posts ) is giving a modal pop-up 404 not found error every time it's loaded, with the new version.
View attachment 123765
I've disabled the add-on for now.
Assuming no-one else is getting this with v1.5, could anyone suggest how I could diagnose what it's launching/looking for that's missing?

EDIT: Problem resolved after a few minutes. Seems likely my CDN hadn't yet retrieved/cached a new js/css/img and the CDN was reporting the 404 until it had retrieved.
 
Last edited:
Daniel Hood updated Tag Essentials with a new update entry:

1.5.1

What's New:
  • Fixed an error with wikipedia integration.
  • Fixed user's session activity being "unknown page" when viewing a tag.
  • Changed the admin panel from using front facing permissions for editing wikis. Now if an admin has the ability to manage tags on the admin panel, they can edit the wiki as well without any front end permissions set.
  • Changed the phrase "tagess_recent_content_tagged_with" to "tagess_recent_content_tagged_with_x" which also includes the tag...

Read the rest of this update entry...
 
With the latest version of UI.X default theme 1.5.3.1, the tag hover popup does not work anymore. I think a JS conflict maybe.

Well well.... just found out that @Mouth's and my problems are the same problem... ;)
For everyone who has the same problem that either the PowerTip is not on top on the z-index or not showing up at all... It is just a typo issue... for use with UIX YOU NEED to adjust the CSS template... (for the default theme it seems to be no issue)


/* PowerTip Plugin */
#powerTip {
cursor: default;
box-shadow: 0px 12px 25px rgba(0,0,0, 0.5);
background-color: #FFFFFF;
border: 1px solid rgb(240, 240, 240);
border-radius: 6px;
color: rgb(44, 44, 44);
display: none;
padding: 10px;
position: absolute;
white-space: normal;
max-width: 400px;s
z-index: 2147483647;
}

The "s" after the ";" prevents the z-index from being processed at all... just delete it and it works...
 
Last edited:
Well well.... just found out that @Mouth's and my problems are the same problem... ;)
For everyone who has the same problem that either the PowerTip is not on top on the z-index or not showing up at all... It is just a typo issue... for use with UIX YOU NEED to adjust the CSS template... (for the default theme it seems to be no issue)


/* PowerTip Plugin */
#powerTip {
cursor: default;
box-shadow: 0px 12px 25px rgba(0,0,0, 0.5);
background-color: #FFFFFF;
border: 1px solid rgb(240, 240, 240);
border-radius: 6px;
color: rgb(44, 44, 44);
display: none;
padding: 10px;
position: absolute;
white-space: normal;
max-width: 400px;s
z-index: 2147483647;
}

The "s" after the ";" prevents the z-index from being processed at all... just delete it and it works...
Can't believe I didn't notice that.
1) How to watch tags? forum.com/tags doesn't have function to watch tags.
2) How can we see list of tags from front-end.
Click on the tag you want to watch and on the ride side above the list of results there should be a link to watch the tag. It is tied to a permission.
Other than the tag cloud on the search tags page, there isn't a way.
 
1.5.1 didn't introduce new features, it was a bug fix release. I consider suggestions for future releases but it does not happen that quickly.
Thank you for your reply, i hope we will see this feature too..

Also, i have a question.
New option auto pull wiki content from wikipedia is perfectly. I will upgrade it soon. But i m interesting with that it pulls just from official english wikipedia? Or you have support wikipedia in other languages ? Because our visitors and forum not for English users. So, tag's wiki text must be fetch from Turkish Wikipedia (tr.wikipedia.org)
 
Back
Top Bottom