diff --git a/application/third_party/wwwlog/controllers/index.php b/application/third_party/wwwlog/controllers/index.php index bfeae234..bd97d39c 100644 --- a/application/third_party/wwwlog/controllers/index.php +++ b/application/third_party/wwwlog/controllers/index.php @@ -60,6 +60,7 @@ class Index extends CI_Controller and request_uri NOT like '%.png' and request_uri NOT like '%.gif' and request_uri NOT like '%.css' + and request_uri NOT like '%.webp' and request_uri NOT like '%.js' and request_uri NOT like '%.woff' and request_uri NOT like '%.ttf' diff --git a/application/views/mobile_first/ah-gp-form.php b/application/views/mobile_first/ah-gp-form.php index e8d936be..817485f2 100644 --- a/application/views/mobile_first/ah-gp-form.php +++ b/application/views/mobile_first/ah-gp-form.php @@ -1,3 +1,4 @@ +

Book this trip now. Your 1:1 travel consultant will reply within 1 working day.

@@ -728,9 +729,24 @@ const submitFormBtn = el('submit_gp_form'); + const gp_form = el('gp_form'); submitFormBtn.on('click', () => { if (validateGPForm()) { - el('gp_form').submit(); + + if (typeof(grecaptcha) === "undefined") { + console.warn('grecaptcha is disabled.'); + gp_form.submit(); + } else { + grecaptcha.enterprise.ready(async () => { + const token = await grecaptcha.enterprise.execute('6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja', {action: 'ADD_TO_CART'}); + var el = document.createElement("input"); + el.type = "hidden"; + el.name = "__grecaptcha_token__"; + el.value = token; + gp_form.appendChild(el); + gp_form.submit(); + }); + } } }); diff --git a/application/views/mobile_first/ah-info-page-form.php b/application/views/mobile_first/ah-info-page-form.php index cef577bc..7757752d 100644 --- a/application/views/mobile_first/ah-info-page-form.php +++ b/application/views/mobile_first/ah-info-page-form.php @@ -1,9 +1,11 @@ + +

Start planning your tailor-made tour now. Your 1:1 travel consultant will reply within 1 working day.

- + - +

For a quick conversation, simply reach us via WhatsApp:

@@ -620,6 +622,30 @@ document.addEventListener('DOMContentLoaded', () => { disableMobile: true, minDate: "today" }); + + var info_page_button = document.getElementById("info_page_button"); + var info_page_form = document.getElementById("info_page_form"); + + info_page_button.addEventListener('click', function(event) { + var validateResult = validateQuickInquiryForm(); + if (validateResult) { + if (typeof(grecaptcha) === "undefined") { + console.warn('grecaptcha is disabled.'); + info_page_form.submit(); + } else { + grecaptcha.enterprise.ready(async () => { + const token = await grecaptcha.enterprise.execute('6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja', {action: 'ADD_TO_CART'}); + var el = document.createElement("input"); + el.type = "hidden"; + el.name = "__grecaptcha_token__"; + el.value = token; + info_page_form.appendChild(el); + info_page_form.submit(); + }); + } + } + }); + }); function validateQuickInquiryForm() { diff --git a/application/views/mobile_first/ah-inquiry-form.php b/application/views/mobile_first/ah-inquiry-form.php index 9bbef304..334ffffd 100644 --- a/application/views/mobile_first/ah-inquiry-form.php +++ b/application/views/mobile_first/ah-inquiry-form.php @@ -1,8 +1,7 @@ - - +

Start planning your tailor-made tour now. Your 1:1 travel consultant will reply within 1 working day.

-
+ - +

+8615807734776
Email: contact@asiahighlights.com

-
\ No newline at end of file + + + + \ No newline at end of file