You can hide the “No front page content has been created yet.” in Drupal 7 by adding the following to your local.css:
#first-time {
display: none;
}
here in santa barbara, ca you can buy soap made locally: http://www.sweetleafessentials.com/
Their website is powered by Drupal too…
Using XML feeds from wunderground.com you can easily graph wind speed and direction with RRDtool and then format the output with PHP for iPhone. Below is a screenshot of a site I created at http://redigital.org/wind/ which tracks various weather stations in Santa Barbara, CA and Sedona, AZ.
Most of my source code is available at http://redigital.org/wp/?p=143 but I can post anything that’s missing.
preg_match('~([^\s]+)(?:,.*)?$~',$node->field_faculty_link[0]['title'], $match);
$node_field[0]['value'] = $match[0];
It is possible to extract the first or last name from a single field in a drupal content-type using the computed_field module. Here were my steps, taken from the drupal structure guide :
% drush dl computed_field Project computed_field (6.x-1.0-beta3) downloaded to [success] /var/www/drupal6/sites/all/modules/computed_field. % drush en computed_field The following projects will be enabled: computed_field Do you really want to continue? (y/n): y computed_field was enabled successfully. [ok]
// compute last name
preg_match('~([^\s]+)(?:,.*)?$~',$node->title, $match);
$node_field[0]['value'] = $match[0];
// compute first name
$node_field[0]['value'] = \
substr($node->title, 0, strrpos($node->title, " "));