Hello all you Drupal heads!
If someone in the know feels this post is inappropriate for this venue, just let me know.
I am walking across the U.S. wearing a big sign, talking to people and trying to gain exposure for a website (http://www.mindsmaymeet.org/) where I will periodically leave content as I go.
The sign says: mindsmaymeet.org, walking coast to coast, talking about us.
At that website I am trying to start a big, I think vital conversation that basically aims at uncovering why it is that our species seems fated to repeat history. By repeat history I mean to not develop past certain milestones of self realization which is a phenomenon I feel gives rise to and/or perpetuates virtually all divisive or intractable issues. Furthermore I'm trying to discuss what can be done to bust us out of this rut I've mentioned.
I just solved one problem, and then another one came up :D.
I'm making custom theme and I've put the code for deciding which page to load in page.tpl.php and it goes like this:
<?php
if ($is_front)
{
include'front-page.tpl.php';
return;
}
if (arg(1)==4)
{
include 'page-agenda.tpl.php';
return;
}
include 'page-default.tpl.php';
return;
?>
The problem is that when i go to Administer/Menus i don't get anything but white screen!
I am trying to set up a different forum moderator for each forum. If I enable administer comments on that role, then the role has access to approve all comments in all forums.
If I set category permissions for that role, the can edit the original post but not the comments.
We need separate people to manage each forum. Any ideas?
It seems that the node-forum.tpl.php is not being used. I checked that the proper lines were in the template.php and style.css files. The theme used is a modified slurpee.
Any suggestions on how to troubleshoot?
If I do a view source on the forum, it shows the slurpee css not the forum css.