Skip to main content

Home/ Drupal for Developers/ Group items tagged drupal-module

Rss Feed Group items tagged

webExplorations

Top Drupal SEO Modules, Tips and Tricks to increase traffic | My Drupal - 0 views

  •  
    SEO
Daniel Gregoire

Apache Solr and Drupal Default's Search | Trellon - 0 views

  • One issue that comes up from ApacheSolr being a separate search page is that the search form does not go to it by default. This is the $search_box in the page.tpl.php template. The way we change this behavior is to add a new submission handler to that form. You can create a custom module for this or put it in your custom theme. <?php/*** Implementation of hook_form_alter()*/function custommodule_form_alter(&$form, $form_state, $form_id) {  // Add submission handler to redirect to apachesolr  if ($form_id == 'search_theme_form') {    // Add a submit, because the search form redirects to a specific place    $form['#submit'][] = 'custommodule_search_submit';  }}/*** Implementation of form submit function*/function custommodule_search_submit($form, &$form_state) {  // Get form ID  $form_id = $form['form_id']['#value'];  // Create new redirect  $form_state['redirect'] = 'search/apachesolr_search/'. trim($form_state['values'][$form_id]);}?>
Scott Blackburn

Subform Element | drupal.org - 0 views

  •  
    I use this for user profiles. Needed for the nodeprofile module
Scott Blackburn

Allow nodeprofile to take over view tab of user | drupal.org - 0 views

  •  
    I spent a little time looking at the bio module last night. I was impressed with it as compared to the previous nodeprofile version. This morning, I looked at the new nodeprofile version and it looks like it's nearly as good.
Scott Blackburn

US Congress | drupal.org - 0 views

  •  
    Application Module that imports and manages Bills from the U.S. Library of Congress website as CCK nodes. It imports Representatives, Committees, Bills, and Bill Actions.
Scott Blackburn

Wikitools | drupal.org - 0 views

  •  
    This is my wiki module of choice at the moment. It is often useful when developing intranet site to include wiki like functionality.
Scott Blackburn

[SOLVED] Error message when creating a new forum topic | drupal.org - 0 views

  •  
    added to og_forum.module if ($key == '') { continue; }
Scott Blackburn

When using views, the group context should be preserved | drupal.org - 0 views

  •  
    I used this og_tracker for emergencyusa.net for keeping the calendar within the group but no longer use the module.
Daniel Gregoire

PHP 5.2.10 .debs for Ubuntu 10.4 (Lucid) | The Jibe Multimedia, Inc. - Business Solutions - 0 views

  •  
    Resource for .deb file for PHP 5.2 on Lucid Lynx (Ubuntu 10.04), since we only have deb's for 5.3 by default, which makes Drupal contributed modules unhappy.
Scott Blackburn

Improving Drupal's Performance with the Boost Module for the UN's Millennium Campaign |... - 0 views

  •  
    A good overview of the Boost module.
Daniel Gregoire

20 APIs in 20 Days: Remember to Bring Your Tokens | Trellon - 3 views

  •  
    One of a series in 20 api's, Token module.
« First ‹ Previous 61 - 80 of 96 Next ›
Showing 20 items per page