Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

 
 
Thread Tools
Automatic Tagging (Product) Details »»
Automatic Tagging (Product)
Version: 1.00, by Noodles24 Noodles24 is offline
Developer Last Online: Apr 2018 Show Printable Version Email this Page

Category: New Posting Features - Version: 3.7.2 Rating:
Released: 06-30-2008 Last Update: Never Installs: 178
Uses Plugins
 
No support by the author.

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.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 07-10-2008, 09:06 PM
principino1984 principino1984 is offline
 
Join Date: Jul 2006
Location: Italy
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks!
Reply With Quote
  #23  
Old 07-10-2008, 09:34 PM
Mrdby Mrdby is offline
 
Join Date: Mar 2007
Location: Hades
Posts: 1,298
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Perfect!!!!
Reply With Quote
  #24  
Old 07-12-2008, 07:03 AM
ShackMaster ShackMaster is offline
 
Join Date: Apr 2006
Posts: 252
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I like this, but as others have mentioned, I hope you will consider the other important features.
Reply With Quote
  #25  
Old 07-12-2008, 08:03 AM
KURTZ KURTZ is offline
 
Join Date: Nov 2006
Location: Italy
Posts: 2,257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

just wondering: can i find some options into the ACP?
Reply With Quote
  #26  
Old 07-12-2008, 09:42 AM
redlabour's Avatar
redlabour redlabour is offline
 
Join Date: Mar 2004
Location: Wuppertal, NRW, Germany
Posts: 1,541
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ShackMaster View Post
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)
Reply With Quote
  #27  
Old 07-13-2008, 12:12 PM
OnR OnR is offline
 
Join Date: Apr 2007
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.

Reply With Quote
  #28  
Old 07-14-2008, 10:40 AM
OnR OnR is offline
 
Join Date: Apr 2007
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

And there is a fix for Tag Minimum Length...

Original line in the product is ;

Code:
    if(strlen($tagtext) > 3 && !in_array(strtolower($tagtext), $badwords))
Change to ;

Code:
  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.
Reply With Quote
  #29  
Old 07-16-2008, 02:31 AM
motowebmaster motowebmaster is offline
 
Join Date: Feb 2006
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for this Mod.
Reply With Quote
  #30  
Old 07-16-2008, 07:36 AM
yahoooh yahoooh is offline
 
Join Date: Oct 2002
Posts: 567
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by OnR View Post
And there is a fix for Tag Minimum Length...

Original line in the product is ;

Code:
    if(strlen($tagtext) > 3 && !in_array(strtolower($tagtext), $badwords))
Change to ;

Code:
  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
Reply With Quote
  #31  
Old 07-18-2008, 06:21 AM
OnR OnR is offline
 
Join Date: Apr 2007
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by yahoooh View Post
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.
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:32 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07200 seconds
  • Memory Usage 2,301KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete