If the admin specifies more than one content type as an option for posting in the forums then both content types should show on the forum lists.

Around line 945 in nodeforum.module you find the Post new forum topic option, but it should also give the option for other enabled content types.

      // Link to post new forums, or to login/register
      if (user_access('create forum topics')) {
        if ($tid) {
          $new_topic_link = l(t('Post new forum topic.'), "node/add/forum", array('query' => "section=$tid"));
        }
        else {
          $new_topic_link = l(t('Post new forum topic.'), "node/add/forum");
        }
      }

Comments

gravisrs’s picture

Nodecomment supports - in opposition to regular forum module - only one content type 'forum'. I hope someone will ever put that functionality.. but as long as it requires to rewrite all sql's.. we can only dream about it..