View Single Post
  #3  
Old 08-12-2009, 03:32 PM
 
steve.thompson steve.thompson is offline
 

eXpert
  
Join Date: Feb 2009
Location: Sydney, Australia
Posts: 302
 

Default Re: Download Expander, Decrementing Stock Qty

For anyone else experiencing this problem, the following edit from Bill at alteredCart fixed this problem:
Quote:
Open include/func/func.order.php:

Find this code near line 1376:


Code:
foreach ($products as $product) { if ($product['product_type'] == 'C' && !empty($active_modules['Product_Configurator'])) continue; $variantid = "";



After insert:


Code:
if ($product['distribution']) continue;

__________________
X-Cart Gold 4.2.1 / 4.4.2
X-AOM, X-SpecialOffers
Download Expander 2.1.3 / 2.2.0
Reply With Quote