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
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
  #192  
Old 03-06-2007, 05:42 PM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Tom_S View Post
Is it possible that this can work for both guest and registered members of a group? Our website is a paysite that once they pay they are upgraded into another group. Until then they are just a registered member but with no access to forums. We would like to do this so it works for both guests and the usergroup "registered users" to encourge them to upgrade their account to paid status.

Thanks in advance
This hack is not intended to do this but you could certainly make it do so. The question to ask yourself if is if you want to let members or guests ever access forums. It sounds like right now people get no access, limited guest viewing is intended to let them view a few threads, then stop them (and bug them until then). If you don't want people _ever_ viewing threads then you should not use this hack but can take advantage of the welcome headers system to show registered members a message about subscribing.
Reply With Quote
  #193  
Old 03-06-2007, 06:29 PM
Tom_S Tom_S is offline
 
Join Date: Jan 2007
Location: VA Beach
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Registered paid members do indeed see threads and post and everything. The intent here was to allow both guests and initial registered members the ability to see a certain number of posts and then they will only see your register screen but modified.

I am using your mod on one of my other boards that is not a pay site and it works wonderful. I just would like to use it on my other board. Even if it only worked for registered users Group ID #2 then that would be okay. Anyway to implement that?
Reply With Quote
  #194  
Old 03-07-2007, 08:47 AM
Tom_S Tom_S is offline
 
Join Date: Jan 2007
Location: VA Beach
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ideas here Ted?

I really need this to work for at least just group ID 2.

I went through your code and I don't see how you are doing it and since vB is new to me I will wait until someone that knows can help and since you created this bad boy I am hoping that will be you.

Thanks
Reply With Quote
  #195  
Old 03-08-2007, 02:49 AM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
<if condition="is_member_of($bbuserinfo,2)"> Message for Group 2</if>
Reply With Quote
  #196  
Old 03-08-2007, 09:43 AM
Tom_S Tom_S is offline
 
Join Date: Jan 2007
Location: VA Beach
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Where does that go? I tried using something similar yesterday by changing the line:
Quote:
if ($show['guest'] AND !$lvgbot AND $vbulletin->options['lgvon'])
to:
Quote:
if ($bbuserinfo['2'] AND !$lvgbot AND $vbulletin->options['lgvon'])
but that didn't work.

I really appreciate your help on this
Reply With Quote
  #197  
Old 03-09-2007, 03:32 AM
Ted S Ted S is offline
 
Join Date: Dec 2003
Location: SoCal
Posts: 3,954
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

$bbuserinfo['2'] doesn't do much of anything

Try

PHP Code:
$membergroups fetch_membergroupids_array($vbulletin->userinfo);
if (
in_array('2'$membergroups) AND !$lvgbot AND $vbulletin->options['lgvon']) 
Reply With Quote
  #198  
Old 03-09-2007, 08:44 AM
Tom_S Tom_S is offline
 
Join Date: Jan 2007
Location: VA Beach
Posts: 320
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Those changes made it work for the initial test. I will do further testing later today. With that in mind do you realize the potential for this mod? You could basically set it up to control campains over any usergroup setup. Wow! Great job my friend. Great job indeed.
Reply With Quote
  #199  
Old 03-10-2007, 07:41 AM
milsirhc's Avatar
milsirhc milsirhc is offline
 
Join Date: Jan 2007
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

works great! Good to have abit of teaser for the guest.. let see how it goes!
Reply With Quote
  #200  
Old 03-10-2007, 10:52 AM
ArabSQuad ArabSQuad is offline
 
Join Date: Sep 2005
Location: EgYpT
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Awesome ..

* installed

thanks alot
Reply With Quote
  #201  
Old 03-10-2007, 06:41 PM
sdebank sdebank is offline
 
Join Date: Jun 2006
Posts: 36
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it possible to allow guests to only see posts that are x amount of hours old. Thus guests wanting to see the latest news/posts will have to register/sign-in.
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 07:54 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.05340 seconds
  • Memory Usage 2,315KB
  • 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
  • (1)bbcode_code
  • (1)bbcode_php
  • (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
  • (4)pagenav_pagelink
  • (2)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