So there is no blogger settings, where i can set-up suck things like blog count of bloggers.

Comments

nickie’s picture

I solve this problem so: into function blogger_menu() add:

      $items[] = array(
      'path' => 'admin/blogger/settings',
      'title' => 'Bloger settings',
      'description' => t('Manage blogger settings'), 
      'callback' => 'drupal_get_form',
      'callback arguments' => 'blogger_settings',
      'access' => user_access('access blogger'),
      'type' => MENU_NORMAL_ITEM
    );

And replace a few strings above: return $form; to return system_settings_form($form);

he_who_shall_not_be_named’s picture

StatusFileSize
new1.19 KB

The patch is here :)

drupalnesia’s picture

StatusFileSize
new17.63 KB

There is already such setting on Basic Settinf- Show number of written blogs.
Look at the screenshot on this atachment.

drupalnesia’s picture

Status: Needs review » Fixed

Fixed.

Anonymous’s picture

Status: Fixed » Closed (fixed)