Drupal – Disable the Collapsible in Ubercart Checkout Panes

By default, the panes in the checkout form are collapsible. if you want to remove the collapsible features, you could customize the theme_uc_cart_checkout_form($form) function in your theme template.php.

function <theme>_uc_cart_checkout_form($form) {
  foreach ($form['panes'] as &$pane) {
    if (isset($pane['#collapsible'])) {
      $pane['#collapsible'] = 0;
    }
  }
  return drupal_render($form);
}

 

Done =)

Reference:

4 thoughts on “Drupal – Disable the Collapsible in Ubercart Checkout Panes”

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.