Jump to content

Error in back end while checking "abandoned carts"


Recommended Posts

When clicking on "abandoned carts" section this is all I get:

 

[PrestaShopException]

Invalid address #14
at line 401 in file classes/Address.php

 

396. // if an id_address has been specified retrieve the address

397. if ($id_address) {
398. $address = new Address((int)$id_address);
399.
400. if (!Validate::isLoadedObject($address)) {
401. throw new PrestaShopException('Invalid address #'.(int)$id_address);
402. }
403. } elseif ($with_geoloc && isset($context->customer->geoloc_id_country)) {
404. $address = new Address();
405. $address->id_country = (int)$context->customer->geoloc_id_country;
406. $address->id_state = (int)$context->customer->id_state;

 

If anyone can help it'd be greatly appreciated. Thanks! Cris

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...