diff --git a/jazkarta/shop/cart.py b/jazkarta/shop/cart.py index 5866807..323c71d 100644 --- a/jazkarta/shop/cart.py +++ b/jazkarta/shop/cart.py @@ -401,14 +401,9 @@ def add_item(self, item): self.save() def thankyou_message(self): - # @@@ get from setting - thankyou_message_path = 'shop/thank-you' - - try: - page = get_site().unrestrictedTraverse(thankyou_message_path) - return page.getText() - except (AttributeError, KeyError): - return '' + # Support for a custom thank-you message, configurable via a setting, + # would be a nice extension here, but it's not implemented currently. + return "" @property def ship_to(self):