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

 
 
Thread Tools
Limited Guest Viewing -- Improve community registration rates Details »»
Limited Guest Viewing -- Improve community registration rates
Version: 1.0.6, by Ted S Ted S is offline
Developer Last Online: Nov 2020 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.6.x Rating:
Released: 11-18-2006 Last Update: 11-14-2008 Installs: 691
Uses Plugins Template Edits
 
No support by the author.

Note: This addon works with the 3.6.x series only. Click Here for the 3.7.0 version of this addon.

With vBulletin, forum guests are able to view endless amounts of content without being directly asked or forced to register no matter how many times they come back. The purpose of the Limited Guest Viewing System is to drive in registrations by limiting the number of threads guests are able to view without interruption.

This plugin offers two options which can be used to drive in more registrations. The first option allows you to show a reminder message or advertisement after a guest has viewed a certain number of threads. The second option puts up a roadblock stopping guests from viewing threads altogether after reaching a certain number of views. Both options work together to encourage and ultimately force anonymous visitors to either register or login but can also be used separately based on your individual needs.

Because this plugin uses cookies, few if any bots will be impacted when it comes to spidering your site.

Modifications/ Instructions:
Template edits: 1
Plugins: 1 (adds 1 template and several settings)

This template hack should take under 5 minutes to implement and customize.

Customizing the content / messages
To customize which messages appear or what they say, go to vBulletin options, select the ?Limited Guest Viewing System? group and configure the options as desired. Each phase can be modified by adding translation text.

Through the ACP you can enable or disable each option, specify the number of threads that can be viewed before the option is enabled and input any forums you wish to exclude from being blocked.

About spiders/bots
This plugin works by setting a cookie to track the number of visits from a particular user. As bots do not tend to accept cookies, they should not be blocked. To further insure there is no spider accessibility issues, there script identifies major bots (google, yahoo, msn, aol) and explicitly lets them through -- you can easily add to this list by editing the plugin code should you so desire, however, unless a bot starts taking cookies this should not be necessary.


Welcome headers compatibility
The Limited Guest Viewing is designed to work with the Welcome Headers system without any conflict. To insure that welcome header messages do not show up at the same time as the limited guest viewing message, please be sure you are running welcome headers version 4.1.3 or greater (released 11/19).

Updates
5/9/2008 - Released update to prevent installs on 3.7 boards.
2/18/2007 - Minor update to fix register link. Updates optional.
11/20/2006 - Minor update released to fix error with links in some messaging. Updates recommended.

Supporters / CoAuthors

Show Your Support

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

Comments
  #462  
Old 05-12-2008, 09:26 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by iheartvb View Post
your the man ted! thank you sooooooooooo much!!!
Glad I could be of assistance.
Reply With Quote
  #463  
Old 05-17-2008, 11:36 PM
swatkins swatkins is offline
 
Join Date: May 2006
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks! Installed and working well!
Reply With Quote
  #464  
Old 06-06-2008, 09:34 PM
mrkhm mrkhm is offline
 
Join Date: Oct 2006
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi!

thanks for this amazing hack, i hope someone can answer this,

at the moment, looking at your xml file it seems the current code is

Code:
 if ($show['guest'] AND !$lvgbot AND $vbulletin->options['lgvon'])
but i would like the system to work as

Code:
if (is_member_of($bbuserinfo, x) AND !$lvgbot AND $vbulletin->options['lgvon'])
can you see what i am trying to do is make this work for a particular forum for a particular usergroup not just for guests and the only other way is to use if ($show['member']) (which does work but then it's a blanket application to ALL MEMBERS, i just want a specific usergroup.

do i have to call the global file or something?

please advise.
Reply With Quote
  #465  
Old 06-06-2008, 10:43 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

mrkhm, You can combine the function is_member_of($bbuserinfo, x) with $show['guest'] like follows:

PHP Code:
if( ($show['guest'] OR  is_member_of($bbuserinfox) ) AND !$lvgbot AND $vbulletin->options['lgvon']) ) .... 
Reply With Quote
  #466  
Old 06-06-2008, 11:37 PM
mrkhm mrkhm is offline
 
Join Date: Oct 2006
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks for your response Ted S, before i saw yours, i managed to get this line of code to work:

Code:
if ($show['member'] AND is_member_of($vbulletin->userinfo, 2) AND !$lvgbot AND $vbulletin->options['lgvon'])
as supposed to

Code:
is_member_of($bbuserinfo, 2)
it's just every time they log out, vbulletin clears the cookies, but i take point that this was designed for guest views and not exactly for the way i am trying to modify it into sort of pay-per-views

but thank you all the same...
Reply With Quote
  #467  
Old 06-07-2008, 04:20 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Theres no need for "$show['member'] AND ", to be in a group you must be a member.

But yes, logging out clears the cookies which would get around this. If your goal is pay per view you'd likely want an addon that stores views in a database and hard counts them. This can of course be done with a little bit of customization.
Reply With Quote
  #468  
Old 07-20-2008, 02:48 PM
mrkhm mrkhm is offline
 
Join Date: Oct 2006
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi ted can you do this.. i will pm you
Reply With Quote
  #469  
Old 08-05-2008, 06:17 PM
Welshy2008's Avatar
Welshy2008 Welshy2008 is offline
 
Join Date: Jul 2008
Location: UK
Posts: 904
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank You very Much. Works a treat. (My first Hack too).
Reply With Quote
  #470  
Old 08-09-2008, 11:21 AM
Welshy2008's Avatar
Welshy2008 Welshy2008 is offline
 
Join Date: Jul 2008
Location: UK
Posts: 904
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

Could you tell me how I can remove the message at the top on the hompage Please? And just keep the message that shows when guests have used up the stated amount of viewings before registering.

Many Thanks.
Reply With Quote
  #471  
Old 08-11-2008, 04:51 AM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Welshy2008 View Post
Hi,


Could you tell me how I can remove the message at the top on the hompage Please? And just keep the message that shows when guests have used up the stated amount of viewings before registering.

Many Thanks.
This addon does not show on your forum homepage. Check your other addons and be sure you have properly installed this one.
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 11:41 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.05335 seconds
  • Memory Usage 2,312KB
  • Queries Executed 26 (?)
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
  • (1)bbcode_php
  • (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
  • (1)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