» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 62
0 members and 62 guests
No Members online
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
Online Degree - search for 1000+ online degrees, online colleges & online universities.
Tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
Football Betting - best nfl betting promotions at sportsbook.com.
Oral Chelation - initial cleansing of your veins & arteries
Portatiles - Ofertas en Ordenadores y Portatiles. Increibles Ofertas DELL.

Register Now! Contact Us

About this Page
This is a discussion on Forums Help within the Site design forums, part of the General category; Hello l need some help on setting my forums up like you have here @ Nukemods l simply want it to ...


Go Back   Nukemods Forum » General » Site design

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-11-2003, 04:48 PM
Junior Member
 
Join Date: Apr 2003
Posts: 17
Forums Help
Hello l need some help on setting my forums up like you have here @ Nukemods l simply want it to open up the same way with just the header and footer of the nuke site showing that way the forums are at full view so the not pushing out my theme any help would be appreciated ..


XtraX
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 08-11-2003, 04:51 PM
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
http://www.nukemods.com/modules.php?...iewtopic&t=376
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 08-11-2003, 05:02 PM
Junior Member
 
Join Date: Apr 2003
Posts: 17
Thanks alot Mikem your the Man worked like a chrm thanks again .

Keep up the great work

XtraX
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 08-11-2003, 09:24 PM
Junior Member
 
Join Date: Apr 2003
Posts: 17
Back Again
Back again l tryed using that same code on the members list module as well but it doesnt seem to work am l doing it wrong by any chance or can it not be done on that module l set it up that anything to do with the forums pages all open that way but the Members List still wont do it any idea what l may need to do to accomplish this



Code:
if ($name=='Members_List') { 
    /* Don't display it. */ 
   } 
   else { 
    blocks(left); 
   }

XtraX [
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 08-11-2003, 09:56 PM
Moderator
 
Join Date: Jan 2003
Posts: 338
Remember you need to add the $name variable to the themeheader function's global line:
i.e. function themeheader() {
global $user, $banners, $sitename, $slogan, $cookie, $prefix, $dbi;

should be changed to:
function themeheader() {
global $user, $banners, $sitename, $slogan, $cookie, $prefix, $name, $dbi;
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 08-11-2003, 10:14 PM
Junior Member
 
Join Date: Apr 2003
Posts: 17
Hello
Hello and thanks for a speedy reply Chatserv l added the $name already do get the forums to work that way as well as gallery but it doesnt seem to work with the Members_list for some reason l have this

Code:
function themeheader() { 
    global $user, $banners, $sitename, $slogan, $cookie, $prefix, $name, $dbi;
and then l addded this to the blocks left of theme.php



Code:
if ($name=='gallery'){ 
      /* Don't display it. */ 
      } 
      else 
      
      if ($name=='Forums'){ 
    /* Don't display it. */ 
   } 
   else { 

blocks(left); 
   }
but know lm trying to add this as well the Members_List so l used this code but Members_List doesnt seem to wrok l get a error


Code:
if ($name=='gallery'){ 
      /* Don't display it. */ 
      } 
      else       
      if ($name=='Forums'){ 
    /* Don't display it. */ 
   } 
   else { 
if ($name=='Members_List'){ 
    /* Don't display it. */ 
   } 
   else { 
blocks(left); 
   }
Do you know of any reason to why it dont work with members list l do appreciate you help thanks allot .

XtraX
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 08-11-2003, 10:43 PM
Moderator
 
Join Date: Jan 2003
Posts: 338
What errors do you get?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 08-12-2003, 12:25 AM
Junior Member
 
Join Date: Apr 2003
Posts: 17
This is the error l get
OK chatserv this is the error l get when adding Private_Messages or Members_List

Fatal error: Call to undefined function: themeheader() in /home/sites/site89/web/header.php on line 32

Parse error: parse error, unexpected $ in /home/sites/site89/web/themes/mysite/theme.php on line 356
And when l go to those lines this is what is displayed

line 356 is out of rang in theme.php and the other one shows this bit of code on line 32 l copyed the first 6 lines above and 6 lines down from line 32 incase its an error before it




Code:
                                </td>
                                <td width=\"9\"><img src=\"themes/Mytheme/images/tabletr.gif\" width=\"9\" height=\"29\" border=\"0\"></td>
                        </tr>
                        <tr>
                                <td colspan=\"3\">
                                        <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">
                                                <tr>
                                                        <td background=\"themes/Mytheme/images/leftside.gif\" width=\"15\"><img src=\"themes/Mytheme/images/leftside.gif\" width=\"15\" height=\"4\" border=\"0\"></td>
                                                        <td bgcolor=\"#242424\" width=\"100%\">\n";
$tableStatus = "open";
}
else {}
}

function OpenTable2() {
    global $bgcolor1, $bgcolor2;
    echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\" align=\"center\"><tr><td>\n";
    echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\"><tr><td>\n";
}
any idea to what is causing this ...


XtraX :?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 08-12-2003, 12:34 AM
Moderator
 
Join Date: Jan 2003
Posts: 338
Retry the one you posted above which includes Members_List but change:

Code:
blocks(left); 
   }
to:
Code:
blocks(left); 
   }
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 08-12-2003, 01:33 AM
Junior Member
 
Join Date: Apr 2003
Posts: 17
Thank U Chatserv
Thank you chatserv that did it it worked and when l added the Private_Message also l just added another one of these on the end and viola its working great thanks so much ..

Code:
blocks(left); 
   } 
}
}
XtraX
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Scrolling Forums not showing forums items paycheck Purged Topics 1 09-29-2008 01:57 AM
Seeing Hidden forums on Recent Forums Block... Jazket Open topics 0 04-08-2005 11:09 AM
google in forums free scripts add it to your forums perfect-games Open topics 0 11-15-2004 03:33 PM
new: Splatt Forums database into your phpBB Forums database Martin Purged Topics 2 03-01-2003 08:47 PM


All times are GMT -5. The time now is 11:52 PM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31