- πΊπΈUnited States xenophyle
Seems fixed by π 404 resource not found (when updating amount in cart, WSOD) Needs review . Reopen if that is not true.
In mailchimp_ecommerce/modules/mailchimp_ecommerce_commerce/src/EventSubscriber/CartEventSubscriber.php, we have:
public function cartAdd(CartEntityAddEvent $event) {
/** @var \Drupal\commerce_order\Entity\Order $order */
$order = $event->getCart();
$customer['email_address'] = $order->getEmail();
if (empty($customer['email_address'])) {
// Cannot create or add an item to a cart with no customer email address.
return;
}
Which checks if there is a customer email before doing any cart / order handling. However, there is no check in cartItemUpdate() nor cartItemRemove(). This results in an error when an anonymous shopper views the cart and updates a quantity or removes an item.
Adding:
$customer['email_address'] = $order->getEmail();
if (empty($customer['email_address'])) {
// Cannot create or add an item to a cart with no customer email address.
return;
}
To each function after $order = $event->getCart(); eliminates the error. I'll see if I can create a quick patch.
Closed: duplicate
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Seems fixed by π 404 resource not found (when updating amount in cart, WSOD) Needs review . Reopen if that is not true.