Filtering by username in People list

Is there a way to filter by username on the list of users at /admin/people?

Basically, I want to be able to have a text input box where I can search by username in addition to filtering by role, permission, status. I would think there would be a module that does this, but had no luck finding one.

Theme Upgrade from 6.2 to 7.0 - Child menu items.

I am attempting to upgrade my Drupal 6 theme to Drupal 7 and have run into one problem. As such this thread may be better placed in the upgrades forum.

I can't get my child menu links to render as they did in my d6 theme.

D6 Code.

     <div id="header">
           <strong class="logo"><a href="<?php print base_path() ?>"><?php print $site_name ?></a></strong>
                          <?php if (isset($primary_links)) : ?>
                                  <?php print print_links($primary_links, array('id' => 'nav')) ?>
                          <?php endif; ?>
                          <?php if (isset($secondary_links)) : ?>
                                  <?php print theme('links', $secondary_links, array('class' => 'submenu')) ?>
                          <?php endif; ?>
                  </div>

D7 Code.

Creating a document manager (or any custom content) - how best to add a tags block

I'm creating a documents directory. I've created a document type and created a view to list all documents with a little image preview, and link to the document node page.

Now what I want to do now is have a menu block which displays all tags in my documents vocabulary which then link to a subset of documents.

I've tried using the Taxonomies menu module, but this provides menu links to the taxonomy page for that term which seems to just display my content using a normal node template, but I want it to display it as in the view I've created.

Looking for a way to add a play button over an image through check box in Drupal 7

I am trying to figure out the best way to add a play button over an image that is uploaded.
I would like to make a check box that says "play button : yes | no" and then depending on what is checked, it will overlay a play button over the image.
One problem is I am not sure where or how to call the conditional in drupal. Second problem, is that the image that does get overlaid, needs to click to the content, the way the image does. I am new to drupal and have be looking all over the place for a solution. It doesn't seem like it should be that hard of a thing to do.

Theming Node Forms in Drupal 7

I create this file:

/sites/all/themes/MYTHEME/template.php :

function MYTHEME_theme() {

  return array(
    'type_node_form' => array(
      'render element' => 'form',
      'path' => drupal_get_path('theme', 'MYTHEME'),
      'template' => 'type-node-forms'
    )
  );
}

function MYTHEME_preprocess_type_node_form(&$variables) {

if (!module_exists('nodeformcols')) {


    hide($variables['form']['title']);
    hide($variables['form']['field_sport']);
    hide($variables['form']['field_address']);
    hide($variables['form']['field_lat']);
    hide($variables['form']['field_lng']);
    hide($variables['form']['field_locality']);    
    hide($variables['form']['field_country']);
    hide($variables['form']['field_city']);
    



    $variables['sport'] = $variables['form']['field_sport'];


    $variables['lat'] = $variables['form']['field_lat'];
    $variables['lng'] = $variables['form']['field_lng'];
    

    $variables['nome'] = $variables['form']['title'];




    // Extract the form buttons, and put them in independent variable.
    $variables['buttons'] = $variables['form']['actions'];
    //hide($variables['form']['actions']);
  }

}// end template_preprocess_article_node_form;

/sites/all/themes/MYTHEME/type-node-forms.tpl.php :

if($sport):

Moving images inside gallery

I'm using fast gallery, and when I first installed it I was able to move the images inside the gallery's. Now I'm only able to move the gallery's but not images inside the gallery's.
My site is http://www.purepix.be if you go to portfolio I can move those gallery's but if you go inside I can't move the individual images and the layout is really ugly now.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x