Guest User

Untitled

a guest
Oct 17th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. if (isset($form['product_id']['#options'])) {
  2. $options = array_keys($form['product_id']['#options']);
  3. $products = commerce_product_load_multiple($options);
  4. foreach ($options as $key) {
  5. $form['product_id']['#options'][$key] = $terms_name[$products[$key]->field_product_type['und'][0]['tid']];
  6. }
  7. $form['product_id']['#title'] = 'DESIRED_LABEL'; // label for select box on product page
  8. }
Add Comment
Please, Sign In to add comment