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

Reply
 
Thread Tools
Zoints Thread Tags - GREAT for SEO Details »»
Zoints Thread Tags - GREAT for SEO
Version: 1.2.2, by Zoints Zoints is offline
Developer Last Online: Apr 2009 Show Printable Version Email this Page

Category: Integration with vBulletin - Version: 3.6.x Rating:
Released: 09-21-2006 Last Update: 06-15-2008 Installs: 494
DB Changes Uses Plugins Template Edits
 
No support by the author.

Demo:

http://network.zoints.com/tags

If you choose to send tags to Zoints (optional) you can see what we do with them and how we send you traffic and nice inbound links: http://zoints.com

A great article on the importance of tagging can be read here.

The Zoints Thread Tags System will improve forum side search, SEO, and traffic for forums that choose to utilize it. And in my opinion, it's just plain cool

When a member creates a new thread, they can now input a series of "tags". Tags are simply keywords that describe the thread.



If you then go to your-forum.com/tags you will be presented with what is called a "tag cloud". The more times a tag is used, the larger the text grows. As you can see, the tags are also searchable.



Clicking on one of the tags in the cloud then lists all of the threads that are tagged with that particular keyword. The default option lists tags in a forumdisplay format. There is an option in the admincp to use a simple format.



Clicking on the thread title of one of the above threads then takes you to the thread. If you have the option on, the tags the thread are tagged with are also listed above the thread. Clicking one of those tags takes you to all the threads on the forum tagged with the same tag. Search engine spiders are going to have a field day with this



The thread starter and moderation staff have a slightly different view which allows for administration of tags:



The forum's tags are also searchable via the search dropdown. The advanced search option allows for a variety of additional criteria to be seached for. Your members create a whole new (and highly efficient) forum search engine!



If you have the option on in the admincp and register your forum, once every hour, your tagged threads in publically viewable forums are linked via the corresponding interest tag on the Zoints Forum Network. For example, if you go to http://zoints.com/tag/children you will see what is pictured below. Not only is this a great relevant inbound link for SEO, but you will get traffic from Zoints direct to these threads!

Another example of this in action: http://zoints.com/tag/music




The admincp options

















Official support for this modification will be at http://network.zoints.com in this forum.


Change log:
2008/05/01 - 1.2.3
* vBulletin CSRF Protocol Compatible
2007/12/24 - 1.2.2
* Security patch

2006/10/24 - 1.2.1
* Bugfix: breaking inline moderation when tag cloud below posts
* Bugfix: ajax input not working when tag cloud below posts
* Bugfix: seo hook effective for "results as threads" option
* Bugfix: Autogenerated tags have "quot" removed
* Bugfix: Automated template edit screwing up styles
* Improved instructions for manual template edits

2006/10/19 - 1.2.0
* Option to display results as threads
* Advanced search page
* Popular tag cloud pagination
* Popular tags displayed in forums
* Option to display tags in showthread at the top/bottom
* Fix for vbadvanced products navbar links
* Other minor fixes and tweaks

2006/10/02 - 1.1.2
* Bugfix: Foreign language characters in thread description
* Bugfix: Commas showing up when removing first tag in showthread via ajax
* Removing some redundancy in the tags AJAX removal

2006/09/30 - 1.1.1
* Bugfix: Preventing all HTML from being parsed inside tag descriptions

2006/09/30 - 1.1.0
* Adding and deleting tags from showthread via AJAX
* Mass-deleting single tags from entire cloud for admins
* Automatically generate tags for older threads (with option to show or hide on main cloud)
* Automatically stripping out tiny (2 or less characters) tags

2006/09/28 - 1.0.8
* Minor bugfix

2006/09/28 - 1.0.7
* Bugfix for required tagging

2006/09/28 - 1.0.6
* Character replacements
* Tag limit per thread
* Option to require tags for a thread
* Bugfix where stopwords may not have worked properly
* Bugfix for vBSEO / main cloud not showing up

2006/09/xx - 1.0.5
* Unreleased dev build

2006/09/23 - 1.0.4
* Ability to add multiple tags via showthread.php
* Ability to exclude certain forums from utilizing tags
* Addition of custom hook for developers to change thread urls

2006/09/21 - 1.0.3
* Ability to add and remove tags from showthread.php
* Bugfix for older versions of mysql

2006/09/21 - 1.0.2
* Small bugfix

2006/09/20 - 1.0.1
* Showing tags list on showthread.php

2006/09/20 - 1.0.0
* Initial release

Show Your Support

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

Comments
  #742  
Old 11-09-2007, 08:09 PM
SBlueman SBlueman is offline
 
Join Date: Jan 2006
Posts: 717
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This starts at about line 370 of tags/index.php:

Quote:
if ($vbulletin->options['zointstags_showresultsas'])
{
$thread['showicon'] = ($vbulletin->forumcache[$thread['forumid']]['options'] & $vbulletin->bf_misc_forumoptions['allowicons']);
$thread = process_thread_array($thread, '', $thread['showicon']);

if ($thread['showicon'])
{
$show['threadicons'] = true;
}

}

$threads[$thread['threadid']] = $thread;
}
}
Maybe something in there needs to be changed?
Reply With Quote
  #743  
Old 11-09-2007, 08:30 PM
class101 class101 is offline
 
Join Date: Sep 2007
Location: France
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yep must be around this part just up look at the SQL query from Zoints index.php

Code:
			$_threads = $db->query_read("
				SELECT * FROM " . TABLE_PREFIX . "thread
				WHERE forumid IN(" . implode(',', $visible) . ")
					AND threadid IN(" . implode(',', $threadids) . ")
				ORDER BY $orderby $direction
				LIMIT $limitlower, $pp
			");
the one made by forumdisplay.php catchs much datas

Code:
	$threads = $db->query_read_slave("
		SELECT $votequery $previewfield
			thread.threadid, thread.title AS threadtitle, thread.forumid, pollid, open, replycount, postusername, postuserid, thread.iconid AS threadiconid,
			$lastpost_info2, thread.dateline, IF(views<=replycount, replycount+1, views) AS views, notes, thread.visible, sticky, votetotal, thread.attach,
			hiddencount, deletedcount
			" . (($vbulletin->options['threadsubscribed'] AND $vbulletin->userinfo['userid']) ? ", NOT ISNULL(subscribethread.subscribethreadid) AS issubscribed" : "") . "
			" . ($deljoin ? ", deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason" : "") . "
			" . (($vbulletin->options['threadmarking'] AND $vbulletin->userinfo['userid']) ? ", threadread.readtime AS threadread" : "") . "
			" . ($redirectjoin ? ", threadredirect.expires" : "") . "
			$hook_query_fields
		FROM " . TABLE_PREFIX . "thread AS thread
			$deljoin
			" . (($vbulletin->options['threadsubscribed'] AND $vbulletin->userinfo['userid']) ?  " LEFT JOIN " . TABLE_PREFIX . "subscribethread AS subscribethread ON(subscribethread.threadid = thread.threadid AND subscribethread.userid = " . $vbulletin->userinfo['userid'] . " AND canview = 1)" : "") . "
			" . (($vbulletin->options['threadmarking'] AND $vbulletin->userinfo['userid']) ? " LEFT JOIN " . TABLE_PREFIX . "threadread AS threadread ON (threadread.threadid = thread.threadid AND threadread.userid = " . $vbulletin->userinfo['userid'] . ")" : "") . "
			$previewjoin
			$tachyjoin
			$redirectjoin
			$hook_query_joins
		WHERE thread.threadid IN (0$ids) $hook_query_where
		ORDER BY sticky DESC, $sqlsortfield $sqlsortorder
	");
this is just supositions because I dunno really at coding but it looks like the zoints query doesn't retrieve what we do need the threadid. In function_forumdisplay.php included in the zoints index.php you see:

Code:
			if ($thread['threadiconid'])
			{
				$thread['threadiconpath'] = $vbulletin->iconcache["$thread[threadiconid]"]['iconpath'];
				$thread['threadicontitle'] = $vbulletin->iconcache["$thread[threadiconid]"]['title'];
			}

			// show poll icon
			if ($thread['pollid'] != 0)
			{
				$show['threadicon'] = true;
				$thread['threadiconpath'] = "$stylevar[imgdir_misc]/poll_posticon.gif";
				$thread['threadicontitle'] = $vbphrase['poll'];
			}
			// show specified icon
			else if ($thread['threadiconpath'])
			{
				$show['threadicon'] = true;
			}
			// show default icon
			else if (!empty($vbulletin->options['showdeficon']))
			{
				$show['threadicon'] = true;
				$thread['threadiconpath'] = $vbulletin->options['showdeficon'];
				$thread['threadicontitle'] = '';
			}
if ($thread['threadiconid']) is not defined I think and we land in the default post icon else if (!empty($vbulletin->options['showdeficon']))
Reply With Quote
  #744  
Old 11-09-2007, 08:33 PM
SBlueman SBlueman is offline
 
Join Date: Jan 2006
Posts: 717
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone have a clue? This is way out of my league....
Reply With Quote
  #745  
Old 11-10-2007, 03:45 AM
ballpnet ballpnet is offline
 
Join Date: Oct 2007
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,

I'm experiencing a strange problem. When ever I click on "tags" and then on any of the pages at the bottom, it seems to log me out of the forum. My custom skin gets switched over to the default and I see the login widget on the right. However, when I click on any link taking me back to the forum, I'm all of a sudden logged into the system and have my theme back. Does that make any sense? Does this happen to anyone else? Thanks for any insight.
Reply With Quote
  #746  
Old 11-10-2007, 01:27 PM
ballpnet ballpnet is offline
 
Join Date: Oct 2007
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ballpnet View Post
Hello,

I'm experiencing a strange problem. When ever I click on "tags" and then on any of the pages at the bottom, it seems to log me out of the forum. My custom skin gets switched over to the default and I see the login widget on the right. However, when I click on any link taking me back to the forum, I'm all of a sudden logged into the system and have my theme back. Does that make any sense? Does this happen to anyone else? Thanks for any insight.
I found the problem: mod_rewrite was causing the the issue. Disabling it seems to have fixed the problem.
Reply With Quote
  #747  
Old 11-22-2007, 10:14 AM
Makc666's Avatar
Makc666 Makc666 is offline
 
Join Date: Dec 2002
Location: MSK-RU
Posts: 392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What can cause an error when I type some word in Russian/Cyrillics for example:
"мама"
I get a result:
"u043cu0430u043cu0430"
So I see in URL "/u043cu0430u043cu0430/"

As you see "u043cu0430u043cu0430" consists of four letter:
u043c -> м
u0430 -> а
u043c -> м
u0430 -> а
Reply With Quote
  #748  
Old 11-24-2007, 04:22 PM
Strike3ForumsMH Strike3ForumsMH is offline
 
Join Date: May 2005
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Makc,

Have you tried using character replacements yet?

- Reid
Reply With Quote
  #749  
Old 11-25-2007, 06:30 PM
sabrawy sabrawy is offline
 
Join Date: May 2007
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i wanna ask please
i have an arabic forum when im adding any tag with arabic language its not adding anything
its reloading the page and give me nothing after i add my tags
any solutions please?
Reply With Quote
  #750  
Old 11-25-2007, 06:46 PM
kafi kafi is offline
 
Join Date: Apr 2004
Posts: 379
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tag system is going to be default from vb 3.7. on.
If you are runging zoints tag and wish to switch to default tag system, please support my request with comment here
http://www.vbulletin.com/forum/showthread.php?p=1452523
Reply With Quote
  #751  
Old 11-25-2007, 07:48 PM
SBlueman SBlueman is offline
 
Join Date: Jan 2006
Posts: 717
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I was just wondering if anyone had figured out how to make the post icons show in the tag results pages. This was talked about in post #741 to #745
Reply With Quote
Reply


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 06:08 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08772 seconds
  • Memory Usage 2,328KB
  • 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
  • (3)bbcode_code
  • (2)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
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (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