Forum

Modifications To The Webdate Script. Including Image Resize And Branding. Many More.

Forum

Postby mutton on Wed Jun 18, 2008 9:04 am

In the members_menu.html where the forum link is I have {LIVE_CHAT_LINK} {LIVE_VIDEO_LINK} {FORUM_LINK} yet only the forum is a live link.

Anyhow, I want to restrict the forum to paid members. I'm tired of policing it for contact information. Any clues?
mutton
 
Posts: 100
Joined: Mon Feb 11, 2008 11:47 pm

Re: Forum

Postby paul on Wed Jun 18, 2008 10:02 am

open engine/pages/members_menu.php

find this near line.. 45
Code: Select all
if(file_exists("engine/pages/forum.php"))
      {
         $forum_link = '<a href="index.php?page=forum" class="m">'."Forum".'</a> |';
      }
      
      parseVariables("templates/members_menu.html");   
   }
?>


replace that code with the code below.... I did not test this so let me know if there is any problems...


Code: Select all
if(file_exists("engine/pages/forum.php"))
      {
         $fMemberm = f(q("SELECT status FROM dt_members WHERE member_id='$fMember[id]'"));
            if($fMemberm[system_status] || $fMember[unlimited])
         {
         $forum_link = '<a href="index.php?page=forum" class="m">'."Forum".'</a> |';
         }
      }
      
      parseVariables("templates/members_menu.html");   
   }
?>


Paul
User avatar
paul
Site Admin
 
Posts: 264
Joined: Sat Jan 26, 2008 7:30 pm
Location: Newington,Ct,USA

Re: Forum

Postby mutton on Sun Jun 22, 2008 10:52 pm

Thank you. It does work. I added

else { $forum_link = 'Forum |';}

because I want the unpaid users to see that there is a forum.
mutton
 
Posts: 100
Joined: Mon Feb 11, 2008 11:47 pm

Re: Forum

Postby paul on Mon Jun 23, 2008 8:02 pm

you should probably make it link to the billing page so they may subscribe.
User avatar
paul
Site Admin
 
Posts: 264
Joined: Sat Jan 26, 2008 7:30 pm
Location: Newington,Ct,USA

Re: Forum

Postby mutton on Tue Jun 24, 2008 4:31 pm

Good point.


else
{
$forum_link = '<a href="index.php?page=billing" class="m">'."Forum".'</a> |';
}
mutton
 
Posts: 100
Joined: Mon Feb 11, 2008 11:47 pm


Return to Webscribble Custom Modifications

Who is online

Users browsing this forum: No registered users and 45 guests

cron