Hello ...
I have managed to add the current page title to my breadcrumbs using this page http://drupal.org/node/743366
Now I would like to specify a start level ...
For example ... I have a home page, the next level is 2 ... I would like to specify that the breadcrumb starts at level 2.
Thanks for the help ...
Having trouble installing Drupal. I copied all of the files onto my server. I then CHMOD'd the "sites/default/" directory to 777. I even copied default.settings.php and renamed it to settings.php in that directory...
I am running a Drupal 7.0 installation on a Bitnami image on Amazon EC2.
This may sound stupid, but I can't find a link that gives me the steps to upgrade an existing Drupal installation. I downloaded 7.4 and the INSTALL.txt file has the following sections:
I'm having an issue with new users after they get their first temporary login and they are taken to the password page to register a new password for the first time.
After they click "Save", the password is accepted but the page remains. Typically the user will click "Save" again (don't ask me why) and then swear when the inevitable error message comes up.
I'm afraid that these users are not blessed with great intelligence.
Is there any way I can specify that the user goes to another page after clicking the "Save" button?
Hi,
I want to add a style sheet only for my forum section. I managed to get it done for the main forum page but when I add a new topic the style sheet does not get added.
[code]
if (arg(0) == 'forum') {
drupal_add_css($forum_style, 'theme', 'all', FALSE);
$variables['styles'] = drupal_get_css();
}
// this works great but it does not work when the user is adding a new topic I am guessing due to the arg(0)=='forum" becomes false.
[/code]