D7: How do you remove menu names from being displayed?

Hi, there,

I have created a menu called "footer menu" and selected the block region that I wanted it to go, and it displays with no problem.

However, it says "Footer Menu" as a header, which I don't want to display, yet it was a forced entry when I made the menu.

How do you get a menu not to display the header/name of the menu?

Thanks so much, and sorry if this is obvious,

- (A/L)

Edit A Blocks Output

Hello,

I am using Zen starter kit to create my own theme. I am having problems with editing the apperance of output from blocks. SPecifically, the Recent Content block. I want to change what is displayed on the page and how it is displayed. For example I do not want to show who the creator I also want explore moving the out put from a tale to a UL as I thought this theme was tableless.

Godaddy Installation 7

I've tried about 10 times to install version 7 onto Godaddy without any luck. I have their mid tier windows hosting plan. I follow the instructions exactly, changing permissions on both files and creating the DB in Godaddy. I go to my domain, Drupal is there, click install...input my database info..it accepts it, but gives me the following error before actually installing....

How many modules can I Install in Drupal

As a title says, and because I'm new in the site / Drupal system I have a question.

How many modules can I Install in Drupal?

There is a percentage or a size storage to have the Drupal stable, or its possible install infinity modules?

Best Regards

Cannot uninstall/reinstall CKEditor

So I've got a new Drupal 7 installation, and an attempted CKEditor installation. Being fairly new to Drupal, when I installed CKEditor wrong the first time, I figured I could just delete the folder, not realizing there was an uninstall button. Since then, I have uploaded all the files properly and double checked the paths, but I keep getting an error that "The CKEditor component is not installed correctly. Please go to the CKEditor homepage to download the latest version.

Theming forms in Drupal 7

Dear community,
I am creating a module using D7, and I want to display a form in a block with some custom theming. Here is what I have for the functions in foo_module.module (skipped the parts that I think do not matter for my issue).

function foo_module_theme($existing, $type, $theme, $path) {
  return array(
    'foo_login' => array(
      'variables' => array('form' => NULL),
    ),
  );
}

function foo_module_block_view($delta = '') {
  $block = array();
  switch ($delta) {
  case "login":
    $form = drupal_get_form('foo_login_form');
    $block["subject"] = "Login";
    $block["content"] = $form;
    break;
  }
  return $block;
}

function theme_foo_login_form($variables) {
  $form = $variables['form'];
  // Some custom theming
  $output = drupal_render_children($form);
  return $output; 
}

function foo_login_form($form, &$form_state) {
  $form['foo_username'] = array(
    '#type' => 'textfield',
    '#size' => '15',
    '#id' => 'foo_username'
  );
  $form['foo_password'] = array(
    '#type' => 'password',
    '#size' => '15',
    '#id' => 'foo_password'
  );
  $form['#theme'] = 'foo_login_form';
  return $form;
}

I am getting "Invalid argument supplied for foreach() in element_children() (line .... in .../common.inc)", And the form is not displayed at all.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x