Hi @all,

I just mentioned that the hook_commerce_checkout_pane_info() implementation is a little buggy for field groups that are stored in code (e.g. exported via feature). Those field group do not have the 'id' property. So the pane id should be created with something like this, instead of using the id:

$checkout_panes['commerce_fieldgroup_pane__' . $type . '__' . $group->group_name] = array(
  // ...
);

commerce_fieldgroup_panes.module - Line 30
in commerce_fieldgroup_panes_commerce_checkout_pane_info()

Thanx in advance & cheers

hctom

Comments

mrfelton’s picture

Same issue here. Basically, on submission of the checkout form, all values are being lost from the fields that are embedded within on of these fieldgroup panes.

mrfelton’s picture

Priority: Normal » Major
mrfelton’s picture

Priority: Major » Normal

sorry, wrong ticket.!

simon georges’s picture

pcambra’s picture

Status: Active » Closed (duplicate)