Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

robscheibel

Archived
  • Posts

    1
  • Joined

  • Last visited

Profile Information

  • Real Name
    Rob Scheibel

robscheibel's Achievements

  1. I had this same problem. Here's the solution to make the OPTION NAME appear in Email (assuming it's appearing in the shopping cart and on the order pages, but just not in email). Edit 'checkout_process.php' and around line #233 on a pretty basic OSC install, change this line: $products_ordered_attributes .= "\n\t" . $attributes_values['products_options_name'] . ' ' . tep_decode_specialchars($order->products[$i]['attributes'][$j]['value']); To the following: $products_ordered_attributes .= "\n\t" . $attr_name . ' ' . tep_decode_specialchars($order->products[$i]['attributes'][$j]['value']); (Essentially you are chaing the $attributes_values['products_options_name'] to the $attr_name variable because you want the name from the most recent db query). Hope that helps someone else - as it stumped me for a couple hours and I couldn't find the solution in this forum. -rob
×
×
  • Create New...