PDA

View Full Version : Forum Home Enhancements - Link Private Forums on Homepage to Thread instead of Error Message


addamroy
12-28-2012, 11:00 PM
I wanted to try this for my own forum and figured I'd share it here.

This mod will let you link private forums on forumhome to a specific thread for non paid members, instead of the 'you do not have permission to view' error message.

This is to increase revenue for your forum, by sending your forum visitors and members to your offer (a thread) when they try to access private content, instead of that annoying error page.

This is a really simple mod achievable via one simple template edit.

STEP 1 - Find the forumhome_forumbit_level2_post template via edit templates > Forum Home Templates.

Find the code below
<a href="{vb:link forum, {vb:raw forum}}">

You need to add some chunks of code around this to make this work.

Replace it with

<vb:if condition="$forum[forumid] == XXX">
<vb:if condition="$show['guest']">
<a href="{vb:link forum, {vb:raw forum}}">
<vb:elseif condition="!is_member_of($bbuserinfo, 1,2,3)" />
<a href="http://www.yourwebsite.com/your-thread-here">
<vb:else />
<a href="{vb:link forum, {vb:raw forum}}">
</vb:if>
<vb:else />
<a href="{vb:link forum, {vb:raw forum}}">
</vb:if>



Replace each instance of 1,2,3 above with the usergroup ids that DO HAVE ACCESS to your private forum.

Replace each instance of XXX with the forum id of the forum you want to link to a thread.

And naturally, replace http://www.yourwebsite.com/your-thread-here with the URL to the thread you want your private forum to link to.

Now members who don't have access to your private section, will be sent to a thread of your choice instead of seeing the no permission error message page. This should send more traffic to your offer page promoting your paid subscription resulting in more revenue for your website.


Check out my other Template Modifications for 4.x!

[Postbit-Legacy Hack] Attractive User Info Boxes for Posts (https://vborg.vbsupport.ru/showthread.php?t=309239)

Sidebar Anywhere Enhancement - Custom Blocks Per Forum or Page (https://vborg.vbsupport.ru/showthread.php?t=296104)

Change Thread Title Color for Specific Forums on Homepage (https://vborg.vbsupport.ru/showthread.php?t=293431)

Change Background Color for Specific Forums on Homepage (https://vborg.vbsupport.ru/showthread.php?t=293417)

Change Title Color of Specific Forums on Homepage (https://vborg.vbsupport.ru/showthread.php?t=293418)

Thread Starter Image in Postbit for OP (https://vborg.vbsupport.ru/showthread.php?t=295277)

CUSTOM BUTTONS that look like your forum! (https://vborg.vbsupport.ru/showthread.php?t=284005)

Custom User Rank Box in Posts (https://vborg.vbsupport.ru/showthread.php?t=294430)

ProFifaLeagues
12-29-2012, 11:22 PM
Very clever Idea and much better then the Standard Msg!
Thanks mate nice one

AURFSCAN
12-30-2012, 02:31 AM
good idea and simple.. :)

also this should be in the template mods section

addamroy
01-04-2013, 09:04 PM
Thanks guys, definitely doing the trick for me.

addamroy
03-16-2014, 12:16 PM
Updated with more improved code.

Make sure to mark as installed and rate :)