Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

edh1138

Archived
  • Posts

    1
  • Joined

  • Last visited

Profile Information

  • Real Name
    Ed H

edh1138's Achievements

  1. Not found the specific problem with this but have found a fix which appears to work.. In includes/classes/shopping_cart.php after if ($price_prefix == '+') { $attributes_price += $option_price; } if ($price_prefix == '-') { $attributes_price -= $option_price; } if (($price_prefix == '') and ($option_price > 0)) $attributes_price += tep_adjust_price($option_price,$products_price); else $attributes_price += $option_price; } add if ($products_price > 0.00) { $attributes_price -= $attributes_price / 2; } The attribute price then comes out correctly.
×
×
  • Create New...