This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function example_form_alter(&$form, &$form_state, $form_id) { | |
// Alters the cart view form at /cart. | |
if ($form_id == 'uc_cart_view_form') { | |
// Hides the image column since courses don't have product images. | |
$form['items']['#columns']['image']['access'] = FALSE; | |
// Adds the label to the product description column from the image column. | |
$form['items']['#columns']['desc']['cell'] = t('Products'); | |
} | |
} |