From bf1cf25df22e854c45d1834909ba005ccbeb6585 Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Mon, 5 Jul 2021 19:47:57 +0700 Subject: remove min-height and reduce padding-top to 3.5 rem to match with navbar size and reverts commit 90089c9b4c2419829eff939ceb51ce522d455c45. --- pages/ord/basket.html | 145 +++++++++++++++++++++++++++++++++++++++++++++++- templates/layout/noleft | 3 +- 2 files changed, 145 insertions(+), 3 deletions(-) diff --git a/pages/ord/basket.html b/pages/ord/basket.html index 0a79ce5..45b600d 100644 --- a/pages/ord/basket.html +++ b/pages/ord/basket.html @@ -6,10 +6,153 @@
-

[L]Your shopping bag[/L]

+

[L]Shopping Cart[/L]

+
+
+
+ [edisplay] + + [calc] + my $cname = $Config->{CookieName} || 'MV_SESSION_ID'; + $Scratch->{have_cookie} = $Tag->read_cookie($cname) + and delete $Scratch->{tried}; + return; + [/calc] + [if scratch have_cookie] + [elsif scratch tried] + [L CART_MSG1]You must have cookies set to leave the basket. Check out now or forever lose your shopping cart.[/L] + [/elsif] + [else] + [set tried]1[/set] + [bounce href="[area ord/basket]"] + [/else] + [/if] + +
+ [form-session-id] + + + + + +
+
+
+
[L]Description[/L]
+
+
+
[L]Price[/L]
+
[L]Quantity[/L]
+
[L]Total[/L]
+
+
+
+
+
+
+ + [if items] + [then] + [item-list] + + [item-calc] + #Log("Checking master item $master"); + $row_class = ++$count % 2 ? 'cartnorm' : 'cartalt'; + my $item = '[item-increment]'; + my $up = q{[item-data merchandising upsell_to]}; + my $cr = q{[item-data merchandising cross_sell]}; + $upsell_remove{'[item-code]'} = 1; + $cross_remove{'[item-code]'} = 1; + my %seen = ( '' => 1 ); + + $Scratch->{upsell} .= " $up" if $up; + $Scratch->{cross_codes} .= " $cr" if $cr; + my @up = split /\s+/, $Scratch->{upsell}; + my @cr = split /\s+/, $Scratch->{cross_codes}; + @up = grep ( (!$seen{$_}++ && ! $upsell_remove{$_}), @up); + @cr = grep ( (!$seen{$_}++ && ! $cross_remove{$_}), @cr); + $Scratch->{upsell} = join " ", @up; + $Scratch->{cross_codes} = join " ", @cr; + return; + [/item-calc] + + +
+
+
+ +
+
+
+
+
[L]Price[/L]
+
[item-discount-price]
+
+
+
+
+
[L]Quantity[/L]
+
+
+
-
+ +
+
+
+
+
+
+
+
+
[L]Total price[/L]
+
[item-discount-subtotal]
+
+
+ +
+
+
+
+
+ [/item-list] + [/then] + [/if] + +
+
+
+
+
[L]Order Summary[/L]
+
+
+
+ [L]Subtotal[/L][subtotal] +
+
+ +
+ +
+
+
+
@_BOTTOM_@ \ No newline at end of file diff --git a/templates/layout/noleft b/templates/layout/noleft index b282aca..1349a58 100644 --- a/templates/layout/noleft +++ b/templates/layout/noleft @@ -27,8 +27,7 @@ } /* Show it is fixed to the top */ body { - min-height: 75rem; - padding-top: 4.5rem; + padding-top: 3.5rem; } -- cgit v1.2.3