PDA

View Full Version : New Posting Features - Automatic Tagging (Product)


Noodles24
06-30-2008, 10:00 PM
Description

With vBulletin tags you can either set to require tags be completed or not. However requiring tags to be completed can easily result in low-quality tags that don't provide SEO value to your forum. With that in mind the thread title often provides better keywords than the tags that the user is forced to enter.

What this modification does is:

When a thread is started, has the user filled in tags?
Yes: Then we do nothing.
No: Then take the thread title, and strip out all words that would be invalid tags and are in the stop words list and use the remaining words as tags.

Example

User enters:

* Thread title = We like the social group email mod
* Thread tags =

vBulletin records the new thread as:

* Thread title = We like the social group email mod
* Thread tags = email, group, social

Which isn't an entirely bad set of tags and is better than none, and better than the user typing in gibberish (IMHO).

History

Based on Buro9's code at https://vborg.vbsupport.ru/showthread.php?t=179772 converted into a product for ease of updating vbulletin/plugin.

I'll be adding some additional features at some point as well.

UncoderMom
07-01-2008, 01:21 AM
Fantastic!! I can REALLY use this on two of my boards!

THANKS!

yahoooh
07-01-2008, 01:33 AM
installed

Charlie98902
07-01-2008, 02:07 AM
How is it different from this one : https://vborg.vbsupport.ru/showthread.php?t=179927

Will it do RSS Feeds?

vibe
07-01-2008, 02:13 AM
works great, installed

RvG2
07-01-2008, 02:37 AM
thank you so much :)

installed

redlabour
07-01-2008, 02:53 AM
Hmmmm...nice but useless if Phalynx releases his new Version in the next Days including a Function to Tag all old Threads. ;)

https://vborg.vbsupport.ru/showthread.php?p=1562964#post1562964

Is there allready a White & Blacklist in this Product?

EagleNick
07-01-2008, 03:36 AM
Is there allready a White & Blacklist in this Product?

There must be, because I cannot find where in the ACP to edit the lists, or any other possible settings.

ahmedeldeep
07-01-2008, 04:17 AM
very nice hack

hiepsi@
07-01-2008, 05:34 AM
Support UTF-8 exp: Trời thương --> change to Troi thuong ?

hiepsi@
07-01-2008, 05:48 AM
nice hack,
I want to group two word or three word
EXP: This is a nice hack --> Tags: this is, a nice, hack
Thanks

7lanet
07-01-2008, 05:56 AM
Can you add tags from (message and title)

in the same time

$temptags = split(' ',$post['message']);


$temptags = split(' ',$post['title']);

hiepsi@
07-01-2008, 06:27 AM
I'm newbie, I really dont know clear, please post your full code for group 2 words or 3 words

EXP: This is a nice hack --> Tags: this is, a nice, hack

jim6763nva
07-01-2008, 07:44 AM
Can you add tags from (message and title)

in the same time

well, for starters, BBcode and Html needs to be stripped out first. I've been testing this myself but haven't had time to do anything more with it.

There should also be a way to detect phrases.

Zaiaku
07-01-2008, 04:58 PM
While I'm liking this but Mr. Eyes's mod is more useful. Tagging of group words, adds tag even if author adds them. You would definitely need to add those features.

Hornstar
07-02-2008, 12:08 AM
Yeah, im surprised to see this mod as there is already one out there, however thanks for sharing, ill see how you progress yours, and i might install it in the near future.

abrecher
07-02-2008, 03:16 AM
How is it different from this one : https://vborg.vbsupport.ru/showthread.php?t=179927

Will it do RSS Feeds?

The product quoted is definitely more complete and feature rich but it doesn't look like it's going to be further developed. I'm going to watch this mod and I hope it'll be polished and updated on a more frequent basis.

q8salem
07-02-2008, 03:32 AM
Very nice and helpfullll,,,, Installed :)

yahoooh
07-10-2008, 08:34 PM
how to stop tags for this kind of number:
23/5/2008
01/4/2007
and so on

redlabour
07-10-2008, 08:53 PM
While I'm liking this but Mr. Eyes's mod is more useful. Tagging of group words, adds tag even if author adds them. You would definitely need to add those features.

Not only these - a Script to tag all old Threads is still missing.

principino1984
07-10-2008, 09:06 PM
thanks!

Mrdby
07-10-2008, 09:34 PM
Perfect!!!!

ShackMaster
07-12-2008, 07:03 AM
I like this, but as others have mentioned, I hope you will consider the other important features.

KURTZ
07-12-2008, 08:03 AM
just wondering: can i find some options into the ACP?

redlabour
07-12-2008, 09:42 AM
I like this, but as others have mentioned, I hope you will consider the other important features.

Watch this one - will soon be reactivated with a lot of other important Features.

Automatic Thread Tagger (Project Terminated) (https://vborg.vbsupport.ru/showthread.php?t=179927)

OnR
07-13-2008, 12:12 PM
Hi to all,

If you use non-english stopwords probably you faced a problem with it.Because it uses default stopwords value for english language which is automatic tagging getting value from.This plug-in fix that problem.It searches badwords then automatic tagging is going to tag without badwords.

:)

OnR
07-14-2008, 10:40 AM
And there is a fix for Tag Minimum Length...

Original line in the product is ;

if(strlen($tagtext) > 3 && !in_array(strtolower($tagtext), $badwords))

Change to ;

if(strlen($tagtext) > $vbulletin->options['tagminlen'] && !in_array(strtolower($tagtext), $badwords))


So when you change the tag minimum length option in admincp , AT will work good.

motowebmaster
07-16-2008, 02:31 AM
Thanks for this Mod.

yahoooh
07-16-2008, 07:36 AM
And there is a fix for Tag Minimum Length...

Original line in the product is ;

if(strlen($tagtext) > 3 && !in_array(strtolower($tagtext), $badwords))

Change to ;

if(strlen($tagtext) > $vbulletin->options['tagminlen'] && !in_array(strtolower($tagtext), $badwords))


So when you change the tag minimum length option in admincp , AT will work good.

could u add any hack code to prevent auto tag for this kind of word:
02/12/2007
and so on
or replace the "/" in the tag to be "-"
thanks

OnR
07-18-2008, 06:21 AM
could u add any hack code to prevent auto tag for this kind of word:
02/12/2007
and so on
or replace the "/" in the tag to be "-"
thanks

Hey!

There are some arrangements.

Now convert 02/12/2007 to 02-12-2007
Fixed : some stopwords and tag length problem when using ',' ' " ' in the thread title.

hscorp
07-22-2008, 08:36 PM
when someone type the topic title between quotes it take it with the words

what i mean for example

"topic title"

so the tags become: "topic, title"

can u make the tags: topic, title

without the quotes

sorry i'm bad in english :D

EagleNick
07-23-2008, 02:08 AM
when someone type the topic title between quotes it take it with the words

what i mean for example

"topic title"

so the tags become: "topic, title"

can u make the tags: topic, title

without the quotes

sorry i'm bad in english :D
I agree. It does this with any character.

It would be nice if the product would automatically strip the tags of special characters other than letters and numbers.

EagleNick
07-26-2008, 02:42 PM
For some reason, it doesn't work when posting using the Zoints Anonymous Posting MOD.

dimab
07-28-2008, 01:57 PM
is it possible to add a feature that specific characters be stripped from the tag when allowed?
ie. remove ! exclamation points, ? question marks and the like.

wtrk
08-01-2008, 07:06 PM
is it possible to add a feature that specific characters be stripped from the tag when allowed?
ie. remove ! exclamation points, ? question marks and the like.

yea please do! and also & causes a problem as its "too short to be a tag"

alqassam
08-21-2008, 05:56 PM
Thanks
installed

Rob Hephner
09-29-2008, 11:58 PM
yea please do! and also & causes a problem as its "too short to be a tag"

+1 I am having an issue with that as well!

Mr.Abdullah
01-11-2009, 09:15 AM
Do you work with the rss feed ??

GHC Webmaster
01-11-2009, 09:54 AM
You write in your orginal post:

With vBulletin tags you can either set to require tags be completed or not.

But I can't find this option anywhere. Where did you find it?

Gosef
02-12-2009, 01:57 PM
thanks a lot