Hi there,

This function knocks out the display of attributes in product description (cart, etc):

function uc_downpayment_product_description($product) {
  $description = array(
    'attributes' => array(
      '#product' => array(
        '#type' => 'value',
        '#value' => $product,
      ),
      '#theme' => 'uc_downpayment_product_description',
      '#weight' => 1,
    ),
  );

  return $description;
}

If I comment it out, the attributes seem to work.

What is the thought behind it?

Thanks,
Andrey.

Comments

dannypfeiffer’s picture

Andrey, please see related post here: http://drupal.org/node/1416868#comment-6005710

sokrplare’s picture

Issue summary: View changes
Status: Active » Closed (duplicate)

#1416868: Duplicate order email sent and double stock decrement seems to have derailed over to address this issue actually.