Help formatting Views display

I'm working on a Views Grid display (with Panel Fields) that is breaking lines and I need to solve this. I can't find out where and how.

Where I need a single line with both, the field label and the field content:

e.g. Name: Lorem ipsum dolor sit amet

what's happening is two kinds of results.

This:

Name:

Lorem ipsum dolor sit amet

and this:

Name: Lorem ipsum
dolor sit amet

Any suggestions? Thanks!

Private Forum section for a certain user role group (moderators)?

In SMF it was a trivial matter to set up a "moderators only" forum within the forum hierarchy.

How can I create a private discussion section in my forum for my moderators?

Do I have to get some kind of module, or create another forum that only moderators can access? I'd prefer to have just a mods only section at the foot of a single forum.

Blog like entries to a page

I have a "News" tab, and want to update the article it links to with occasional news stories, just as you can post an article that would be published to the front page, except I don't want it on the front page, i want it on the News page.

How can I post 'blog like' updates on the news page, as you can on the fornt page? All I can see is 'add a comment' to the news page.

Isn't there a way of setting things up so that instead of just "promote to front page", you can check a box to promote to any page yo want?

Views 3 doesn't recognize a declared handler. Why not?

In modules/addressfield/addressfield.module I have:

/**
 * Implements hook_views_api().
 */
function addressfield_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'addressfield') . '/views',
  );
}

and

/**
*  Implements hook_field_views_data_alter
* 
* @param mixed $result
* @param mixed $field
*/
function addressfield_field_views_data_alter (&$result, $field) {
  if (array_key_exists('field_data_field_address', $result)) {
    $result['field_data_field_address']['field_address_country'] += array(
      'title' => t('Country'),
      'help' => t('The Country name of the field'),
      'field' => array(
        'handler' => 'addressfield_views_handler_field_country',
        'click sortable' => TRUE,
      ),
    );
  }
}

In modules/addressfield/views/addressfield.views.inc:

/**
 * Implementation of hook_views_handlers().
 */
function addressfield_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'addressfield') . '/views',
    ),
    'handlers' => array(
      'addressfield_views_handler_field_country' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}

This file doesn't get triggered in the debugger when I clear the cache. I don't understand this.

Can't add any image :(

Straight out of the box D7:

Seeing the amazing things that can be done with Drupal makes me despair when I struggle to get so many basic things to work.

I can't even get avatars to appear for members, or change the site logo.

When I do, no image appears, and just a link to "member's picture", which doesn't even show up when clicked.

As far as I can see, permissions are ok on the sites/default folder.

What's up? Is there a problem with my installation, or is there yet another configuration to set before this happens?

How do i make start SubTheme to Zen 7.x-3.0 ?

I cant make a start Sub Theme to Zen 7.x-3.0! I´ve used dupral.org instruction and changed files whith wordpad, and tried steps in http://www.youtube.com/watch?v=F11jzTBkC7Y. Refreshed Apppearance doesn´t show my new SubTheme. Please give me realy simple instructions how to setup this start SubTheme. /MyM

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x