Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I have been playing around with the Garland theme and would like some pointers on how to absolutely position a large logo that will "float" over a little into the navigation area. This is probably more of a CSS question, but which class id's would I look to change to make this change.
I am using the Drupal CivicSpace version. I will try the Drupal upgrade once I get the original installation working.
I can only get the cron.php module to run by entering it in the browser window. Even when I do that, only 3 of my members get the email for the content update via the Notify module. There are more than 3 members in that same role, so it's not in the role permission settings.
Is there a setting, other than the role permission, that activates the Notify module for all Users?
Thanks to some great new modules (usernode, nodeprofile, nodefamily) in connection with CCK I was able to set up some nice detailed user profiles with different kinds of node types such as "personal data", "contact data", etc.... Now I am struggeling with the following: I want to allow a specific user role to upload files. I then want a table view of the files to appear as part of the user profile. Obviously when clicking on user A's profile one should only see the list of files uploaded by user A. I don't know how to solve this.
subj
ok i have this stuff in my module to delete authoring information from create content page
function example_form_alter($form_id, &$form) {
if (isset($form['type']) && $form['type']['#value'] .'_node_form' == $form_id) {
unset($form['author']);
}
}
i also have only one required taxonomy term for that content type, and i want to delete/hide it(category fieldset) from user,
how can i do that? am i must edit taxonomy module(but this is a way to drupal hell)?