View Single Post
  #7  
Old 08-02-2000, 05:29 AM
Guest
 
Posts: n/a
Default

Ok, here we go.

But first, some user testimonial:

"Love it!" - Me2Be

Hehe, sorry, had to

Anyway, in newthread.php find:
Code:
if ($action=="newthread") {
  $forumid = verifyid("forum",$forumid);
Under, add:
Code:
  //CHOOSE FORUM HACK
    $jumpforumbits="";

  if ($forumid!="") {
    $curforumid=$forumid;
  } else {
    if ($threadid!="") {
      $getforumid=$DB_site->query_first("SELECT forumid FROM thread WHERE threadid=$threadid");
      $curforumid=$getforumid[forumid];
    }
  }

  $categorys=$DB_site->query("SELECT categoryid,title,displayorder FROM category WHERE displayorder<>0 ORDER BY displayorder");
  while ($category=$DB_site->fetch_array($categorys)) {

    $optionselected="";

    $forums=$DB_site->query("SELECT forumid,title,displayorder FROM forum WHERE displayorder<>0 AND active=1 AND categoryid=$category[categoryid] ORDER BY displayorder");

    $forumshown=0;
    $tempjumpforumbits="";

    while ($forum=$DB_site->fetch_array($forums)) {

      if ($hideprivateforums==1) {
        $getperms=getpermissions($bbuserid,$bbusergroupid,$forum[forumid]);
      } else {
        $getperms[canview]=1;
      }

      if ($getperms[canview]==1) {
        $forumshown=1;

        $jumpforumid=$forum[forumid];
        $jumpforumtitle="  $forum[title]";

        if ($curforumid==$jumpforumid) {
          $optionselected="selected";
          $selectedone=1;
        } else {
          $optionselected="";
        }
        eval("\$tempjumpforumbits .= \"".gettemplate("jumpforumbit")."\";");
      } // end if $getperms...
    } // end while

    if ($usecategories==1 and $forumshown==1) {
      $jumpforumid="";
      $jumpforumtitle="";
      eval("\$jumpforumbits .= \"".gettemplate("jumpforumbit")."\";");

      if ($curforumid=="cat".$category[categoryid]) {
        $optionselected="selected";
      }
      $jumpforumid="cat$category[categoryid]";
      $jumpforumtitle="Category: $category[title]";
      eval("\$jumpforumbits .= \"".gettemplate("jumpforumbit")."\";");

      $optionselected="";

      $jumpforumid="";
      $jumpforumtitle="--------------------";
      eval("\$jumpforumbits .= \"".gettemplate("jumpforumbit")."\";");
    }
    // add forum bits
    $jumpforumbits.=$tempjumpforumbits;
    
    }
    $forumpick = $jumpforumbits;
    //END CHOOSE FORUM HACK
Now, in the newthread template, add this where you feel fit (I added it under subject and fooled around with the alt colors):
Code:
<td><normalfont><B>Forum:</B></normalfont></td>
<td><SELECT name="forumid">$forumpick</SELECT> <smallfont>(Please choose an appropriate forum)</smallfont></td>
VERY IMPORTANT. Also in newthread template, scroll down towards the end, and find:
Code:
<INPUT TYPE="HIDDEN" NAME="forumid" VALUE="$forumid">
Replace with:
Code:
<INPUT TYPE="HIDDEN" NAME="OLDforumidOLD" VALUE="$forumid">
-----------

There you go! All done!

Now, if a user selects the "--------------" or a category from the dropdown, it will give an error saying that the forum doesn't exist, and if you followed a valid link, to email the webmaster. You might want to change this or you'll probably get emails saying "I couldn't post!!"

[Edited by Ed Sullivan on 08-02-2000 at 02:35 AM]
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01209 seconds
  • Memory Usage 1,777KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete