Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 92
3 members and 89 guests
huelva9, peardir46, ral6qkeighqenpa
Most users ever online was 611, 03-21-2008 at 10:10 PM.
» .::.
» .:.

Go Back   Nukemods Forum > General > Site design

Reply
 
LinkBack Thread Tools Display Modes
Forums Help
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 17
Join Date: Apr 2003
Forums Help - 08-11-2003, 03:48 PM

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
Old
  (#2 (permalink))
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
08-11-2003, 03:51 PM

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
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 17
Join Date: Apr 2003
08-11-2003, 04:02 PM

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
Back Again
Old
  (#4 (permalink))
Junior Member
 
Status: Offline
Posts: 17
Join Date: Apr 2003
Back Again - 08-11-2003, 08:24 PM

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
Old
  (#5 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
08-11-2003, 08:56 PM

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
Hello
Old
  (#6 (permalink))
Junior Member
 
Status: Offline
Posts: 17
Join Date: Apr 2003
Hello - 08-11-2003, 09:14 PM

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
Old
  (#7 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
08-11-2003, 09:43 PM

What errors do you get?
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
This is the error l get
Old
  (#8 (permalink))
Junior Member
 
Status: Offline
Posts: 17
Join Date: Apr 2003
This is the error l get - 08-11-2003, 11:25 PM

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
Old
  (#9 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
08-11-2003, 11:34 PM

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
Thank U Chatserv
Old
  (#10 (permalink))
Junior Member
 
Status: Offline
Posts: 17
Join Date: Apr 2003
Thank U Chatserv - 08-12-2003, 12:33 AM

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 12:57 AM
Seeing Hidden forums on Recent Forums Block... Jazket Open topics 0 04-08-2005 10:09 AM
google in forums free scripts add it to your forums perfect-games Open topics 0 11-15-2004 02:33 PM
new: Splatt Forums database into your phpBB Forums database Martin Purged Topics 2 03-01-2003 07:47 PM




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.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