By Phil Frilling, 9 April, 2012
Today I had the pleasure of launching a new Drupal 7 website into the Aegir hosting platform. However, I quickly discovered that migrating a Drupal 6 site and a Drupal 7 site, while similar, are really quite different.

The beginning

The website we were moving was built on a standard Drupal 7 installation on our development server. So the modules and themes were stored in the "sites/all/" directory and the files were stored in the "sites/default/files" directory.
By Phil Frilling, 6 April, 2012
We are working on an Ubercart store running Drupal 7 and we needed to add the price per unit to the shopping cart page. I didn't see any options for enabling this in the store administration area so I began looking for some code to make this happen. I came across this post, http://pixeljets.com/blog/adding-price-field-ubercart-cart-page, which was close to what I needed, but I figured there was a theme function I could use instead of a custom module.
By Phil Frilling, 6 March, 2012
Today I needed to create an ajax powered form using Drupal 7, the caveat being that I needed one user action to perform multiple ajax actions to different sections of the form. To begin, my form element with the ajax looks like this:

  $form['company']['company_branches'] = array(
    '#type' => 'select',
    '#title' => t(
By Phil Frilling, 2 March, 2012
Today I was setting up a website that was using FlickrSync to pull images from Flickr. FlickrSync creates one node per image and uses Flickr's tags as taxonomy terms. Perfect. I created a new Term view to pull all taxonomy terms associated to the 'Gallery' vocabulary I had created. The problem I ran into was that the view pulled ALL image nodes tagged with each gallery term. This was not what I was looking for.