Open samhibberd opened 1 year ago
See:
https://github.com/digitalwithyou/craft-facebook-conversion/blob/9df234c090b4bce1f248b0f8f9f2b5b395a0cc53/src/listeners/commerce/BaseCommerceEvent.php#L43
Results in an Unknown Method exception:
{ "name": "Exception", "message": "Calling unknown method: craft\\elements\\User::getEmail()", ... }
To fix, replace getEmail() with email: $email = $customer->email;
getEmail()
email
$email = $customer->email;
See:
https://github.com/digitalwithyou/craft-facebook-conversion/blob/9df234c090b4bce1f248b0f8f9f2b5b395a0cc53/src/listeners/commerce/BaseCommerceEvent.php#L43
Results in an Unknown Method exception:
To fix, replace
getEmail()
withemail
:$email = $customer->email;