Open GoogleCodeExporter opened 9 years ago
To get these default values sent to google I needed to modify the following in
gcheckout.php
I changed this:
$default_value = gc_compare($module_info[$key]['code'].$method . $type
,$key_values);
$shipping_price = $currencies->get_value(DEFAULT_CURRENCY) * $default_value;
To this:
$merchant_calculated_shipping_configuration =
gc_get_configuration_value($config->merchantCalculatedShipping());
$merchants_config = explode(', ', $merchant_calculated_shipping_configuration);
$default_value = gc_compare($module_info[$key]['code'].$method . $type
,$merchants_config);
$shipping_price = $currencies->get_value(DEFAULT_CURRENCY) * $default_value;
Original comment by clickcon...@gmail.com
on 11 Feb 2012 at 5:32
Original issue reported on code.google.com by
sawa...@gmail.com
on 10 Sep 2010 at 6:11