Jump to content

dezignated

Members
  • Posts

    6
  • Joined

  • Last visited

dezignated's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I seem to have fixed this problem on my end by adding the following code to "modules/authorizeaim/validation.php: 'x_city' => Tools::safeOutput($invoiceAddress->city), 'x_state' => Tools::safeOutput($invoiceAddress->id_state), Note "$invoiceAddress->id_state", you can't use "$invoiceAddress->state" becuase "state" does not exist in the database. This will send authorize.net the state id. I don't think authorize.net uses this information but it is a filler to send them and it fixes my problem. I just did this on a new install of prestashop 1.4.9 but I am curious to know if this works for previous versions as well.
  2. doesn't paymentech go through authorize.net?
  3. I am still new to prestashop but so far I like it. I have not tested this but for now I changed line 1265 in classes/product.php *************************************************** from: $attribute_price = $usetax ? $result['attribute_price'] : ($result['attribute_price'] / (1 + (($tax ? $tax : $result['rate']) / 100))); to: $attribute_price = $usetax ? ($result['attribute_price'] * (1 + (($tax ? $tax : $result['rate']) / 100))) : ($result['attribute_price'] ); *************************************************** I only use the combination prices with out any product prices so I don't know if that is setup the same way. Like I said I have not really tested this but it seems to do it for me until I am more setup for real testing. If anyone has anything to add please let me know. Thank you, Rob
×
×
  • Create New...