From bd7807f30e796fe43e710f5e3d6a592c2be81e43 Mon Sep 17 00:00:00 2001 From: Gustavo Luigi Date: Thu, 1 Sep 2022 21:39:40 +0200 Subject: [PATCH] . --- content/master.blade.php | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/content/master.blade.php b/content/master.blade.php index caffd0b..7c36595 100644 --- a/content/master.blade.php +++ b/content/master.blade.php @@ -240,7 +240,31 @@ ${formatter.format(item.data_fields.preis)} `; $('#list-products-in-bag').append(elementProduct); - if(typeof updateProducts === "function") $('#list-products').append(elementProduct); + if(typeof updateProducts === "function") { + elementProduct = ` + + + + + + ${item.title} +
+ sofort verfügbar +
+ + + + ${formatter.format(item.data_fields.preis)} + `; + $('#list-products').append(elementProduct); + } }); $('#total-price').text(formatter.format(totalPrice)); if(typeof updateProducts === "function") $('#total-checkout-price').text(formatter.format(totalPrice));