diff --git a/application/views/mobile_first/ah-lantern-form-info-page.php b/application/views/mobile_first/ah-lantern-form-info-page.php index 77f826cd..a47caf3a 100644 --- a/application/views/mobile_first/ah-lantern-form-info-page.php +++ b/application/views/mobile_first/ah-lantern-form-info-page.php @@ -61,7 +61,7 @@

Children under 8 years old enter free; 8-year-olds and above are charged the same as adults. You can buy a ticket for your child under 8 if you would like her or him to enjoy the same provision.

-
Total price: $179
+
Total price: $159

Please provide correct personal information for your ticket booking. Double check.

@@ -692,6 +692,7 @@ var adultNumberValue = parseInt(adultNumberNode.value); var ticketPrice = 159; totalPriceHidden.value = ticketPrice * adultNumberValue; + totalPriceText.innerText = '$'+ticketPrice; for (var i = 0; i < ticketTypeList.length; i++) { var ticketTypeNode = ticketTypeList[i]; ticketTypeNode.addEventListener('click', function(event) { diff --git a/application/views/mobile_first/ah-lantern-form.php b/application/views/mobile_first/ah-lantern-form.php index 8db93f94..74cbec68 100644 --- a/application/views/mobile_first/ah-lantern-form.php +++ b/application/views/mobile_first/ah-lantern-form.php @@ -61,7 +61,7 @@

Children under 8 years old enter free; 8-year-olds and above are charged the same as adults. You can buy a ticket for your child under 8 if you would like her or him to enjoy the same provision.

-
Total price: $179
+
Total price: $159

Please provide correct personal information for your ticket booking. Double check.

@@ -687,8 +687,9 @@ var totalPriceText = document.getElementById("totalPriceText"); var totalPriceHidden = document.getElementById("totalPriceHidden"); var adultNumberValue = parseInt(adultNumberNode.value); - var ticketPrice = 179; + var ticketPrice = 159; totalPriceHidden.value = ticketPrice * adultNumberValue; + totalPriceText.innerText = '$'+ticketPrice; for (var i = 0; i < ticketTypeList.length; i++) { var ticketTypeNode = ticketTypeList[i]; ticketTypeNode.addEventListener('click', function(event) {