From eab42812dee9e89323214a9db68042ba4688f237 Mon Sep 17 00:00:00 2001 From: candice Date: Tue, 17 Mar 2026 13:41:53 +0800 Subject: [PATCH 01/12] =?UTF-8?q?=E5=A4=B4=E9=83=A8=E6=A8=A1=E6=9D=BF?= =?UTF-8?q?=E6=94=B9=E7=89=88=EF=BC=8C=E6=A0=B7=E5=BC=8F=E5=92=8CHT?= =?UTF-8?q?=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-pc.php | 634 +++++++++++++++-------- application/views/mobile_first/ch.php | 613 +++++++++++++--------- 2 files changed, 788 insertions(+), 459 deletions(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index e7f505ce..d0abdc55 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -82,225 +82,439 @@
diff --git a/application/views/mobile_first/ch.php b/application/views/mobile_first/ch.php index a11fa375..da3cf8c0 100644 --- a/application/views/mobile_first/ch.php +++ b/application/views/mobile_first/ch.php @@ -74,258 +74,373 @@ - - - - + From baa67bdd20ff590aa31fd4aca3d053f63b8a9181 Mon Sep 17 00:00:00 2001 From: candice Date: Tue, 17 Mar 2026 14:26:28 +0800 Subject: [PATCH 02/12] =?UTF-8?q?=E5=A4=B4=E9=83=A8=E5=AF=BC=E8=88=AAJS?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=8C=E5=A4=8D=E5=88=B6HT?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch.php | 82 +++++++++++++-------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/application/views/mobile_first/ch.php b/application/views/mobile_first/ch.php index da3cf8c0..1e388867 100644 --- a/application/views/mobile_first/ch.php +++ b/application/views/mobile_first/ch.php @@ -400,47 +400,47 @@ bottom: 130px;
+ (function () { + const menuEl = document.getElementById("ml-menu"); + const mainMenu = document.getElementById("main-menu"); + const mainMenuItems = mainMenu.querySelectorAll("a[data-menu-item]"); + var lastMenuItem = null; + + mainMenuItems.forEach(item => { + item.addEventListener('click', function () { + mainMenu.style.visibility = 'hidden'; + const submenuId = this.getAttribute('data-submenu'); + const submenu = document.getElementById(submenuId); + lastMenuItem = submenu; + submenu.style.visibility = 'visible'; + }); + }); + + const backButtonList = document.querySelectorAll("button[data-back-button]"); + + backButtonList.forEach(back => { + back.addEventListener('click', function () { + mainMenu.style.visibility = 'visible'; + lastMenuItem.style.visibility = 'hidden'; + }); + }); + + const openMenuCtrl = document.querySelector(".action--open"); + const closeMenuCtrl = document.querySelector(".action--close"); + openMenuCtrl.addEventListener("click", openMenu); + closeMenuCtrl.addEventListener("click", closeMenu); + function openMenu() { + menuEl.classList.add("menu--open"); + openMenuCtrl.style.display = 'none'; + closeMenuCtrl.style.display = 'block'; + } + function closeMenu() { + menuEl.classList.remove("menu--open"); + openMenuCtrl.style.display = 'block'; + closeMenuCtrl.style.display = 'none'; + } + })(); + From 33f41666c12655ce69c18a8b26947e94a2e695e6 Mon Sep 17 00:00:00 2001 From: candice Date: Tue, 17 Mar 2026 15:03:20 +0800 Subject: [PATCH 03/12] =?UTF-8?q?=E5=90=8C=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-pc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index d0abdc55..8ec3147f 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -137,7 +137,7 @@ -
+
Popular Cities and Region Tours
-
+
Multi-countries Tours
-
+
  • Top China Tours
  • -
    +
    China+Nepal+India - + From 83fad9d75f2ac494301c17b3d79026e4709799a8 Mon Sep 17 00:00:00 2001 From: candice Date: Tue, 17 Mar 2026 15:36:05 +0800 Subject: [PATCH 05/12] 11 --- application/views/mobile_first/ch-pc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index 8ec3147f..b1062485 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -95,7 +95,7 @@
    -
    Seasonal picks
    +
    Top China Tours
    Date: Tue, 17 Mar 2026 16:47:35 +0800 Subject: [PATCH 06/12] =?UTF-8?q?=E5=A4=B4=E9=83=A8=E5=AF=BC=E8=88=AA?= =?UTF-8?q?=E7=BB=86=E8=8A=82=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-pc.php | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index b1062485..434bc446 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -320,8 +320,7 @@
    The Real Local Experiences
    Closer Moment Program + class="img-responsive" width="340" height="150" src="https://images.chinahighlights.com/allpicture/2025/10/c00e1615379f49d981963e0afe5d7f3f_cut_340x150_241_1773765634.jpg"> Closer Moment Program @@ -331,7 +330,7 @@
    Local Finds + width="340" height="150" src="https://images.chinahighlights.com/allpicture/2018/07/cab61357e42c49198472bd91_cut_340x150_241_1773765728.jpg"> Local Finds @@ -344,8 +343,7 @@
    Little Princess's Birthday Cake + class="img-responsive" width="158" height="322" src="https://images.chinahighlights.com/allpicture/2026/03/4a7bb9d432694420a0a4968b38f806a4_cut_158x322_241_1773765855.jpg"> Little Princess's Birthday Cake @@ -354,8 +352,7 @@
    Thanksgiving Day, No Turkey? No Problem! + class="img-responsive" width="158" height="322" src="https://images.chinahighlights.com/allpicture/2025/09/284c74984abd40c99d54806471febb60_cut_158x322_241_1773765980.jpg"> Thanksgiving Day, No Turkey? No Problem!
    From 050a48257ca67863e34c1e75030bd5013ab8afab Mon Sep 17 00:00:00 2001 From: candice Date: Wed, 18 Mar 2026 09:25:50 +0800 Subject: [PATCH 07/12] =?UTF-8?q?=E5=A4=B4=E9=83=A8=E5=AF=BC=E8=88=AA?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-pc.php | 11 ++++++----- application/views/mobile_first/ch.php | 13 +++++++------ 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index 434bc446..327b7927 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -207,17 +207,18 @@
    Travel with
    diff --git a/application/views/mobile_first/ch.php b/application/views/mobile_first/ch.php index 455529b7..f73bc510 100644 --- a/application/views/mobile_first/ch.php +++ b/application/views/mobile_first/ch.php @@ -266,14 +266,15 @@ width="255" height="64" src="https://images.chinahighlights.com/allpicture/2025/
  • Travel with
  • +
  • Ways to travel
  • - - - - - - + + + + + +
  • Seasonal picks
  • From 54c6ec0a92edd15bcef69e76f4ebc72fbe660ed9 Mon Sep 17 00:00:00 2001 From: candice Date: Wed, 18 Mar 2026 10:26:03 +0800 Subject: [PATCH 08/12] =?UTF-8?q?=E5=90=8C=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-pc.php | 3 ++- application/views/mobile_first/ch.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index 327b7927..e6c41327 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -359,9 +359,10 @@
    - +
    +
    diff --git a/application/views/mobile_first/ch.php b/application/views/mobile_first/ch.php index f73bc510..eed8d4d4 100644 --- a/application/views/mobile_first/ch.php +++ b/application/views/mobile_first/ch.php @@ -372,7 +372,7 @@ width="255" height="64" src="https://images.chinahighlights.com/allpicture/2025/ Little Princess's Birthday Cake
    - +
    From 13c1f67d0446a91b3c2760ae9522258ad268a18c Mon Sep 17 00:00:00 2001 From: candice Date: Wed, 18 Mar 2026 10:28:24 +0800 Subject: [PATCH 09/12] =?UTF-8?q?=E5=90=8C=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-pc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index e6c41327..1e146ab5 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -361,8 +361,9 @@
    +
    - +
    From 090b85ca203d89c73dc27fc3fa06e955ec49f53c Mon Sep 17 00:00:00 2001 From: candice Date: Wed, 18 Mar 2026 10:30:22 +0800 Subject: [PATCH 10/12] =?UTF-8?q?=E5=90=8C=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-pc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index 1e146ab5..b89eb02c 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -361,7 +361,7 @@ - + From f35193c72dc0e0766ef174c0077a0379d9cafaf0 Mon Sep 17 00:00:00 2001 From: candice Date: Wed, 18 Mar 2026 11:11:57 +0800 Subject: [PATCH 11/12] =?UTF-8?q?=E5=A4=B4=E9=83=A8=E5=AF=BC=E8=88=AAstory?= =?UTF-8?q?=E6=9B=B4=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-pc.php | 6 +++--- application/views/mobile_first/ch.php | 7 +++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index b89eb02c..980031e5 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -343,10 +343,10 @@
    Little Princess's Birthday Cake + alt="The Embrace of the Jungle" + class="img-responsive" width="158" height="321" src="https://images.highlightstravel.com/allpicture/2026/03/08e20b156d4748ce99036d1566e45b85_cut_158x321_241_1773832161.jpg"> - Little Princess's Birthday Cake + The Embrace of the Jungle
    diff --git a/application/views/mobile_first/ch.php b/application/views/mobile_first/ch.php index eed8d4d4..f4bbac43 100644 --- a/application/views/mobile_first/ch.php +++ b/application/views/mobile_first/ch.php @@ -365,11 +365,10 @@ width="255" height="64" src="https://images.chinahighlights.com/allpicture/2025/
    Little Princess's Birthday Cake + alt="The Embrace of the Jungle" class="img-responsive" + width="217" height="347" src="https://images.highlightstravel.com/allpicture/2026/03/08e20b156d4748ce99036d1566e45b85_cut_217x347_241_1773832255.jpg"> - Little Princess's Birthday Cake + The Embrace of the Jungle
    From 1c21085ced20fe38c7cc96a4042109fff386342f Mon Sep 17 00:00:00 2001 From: LMR <59361885@qq.com> Date: Thu, 19 Mar 2026 14:59:50 +0800 Subject: [PATCH 12/12] =?UTF-8?q?fix=20=E9=94=99=E8=AF=AF=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E7=BC=93=E5=AD=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/information.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/application/controllers/information.php b/application/controllers/information.php index c0617018..713493a7 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -6350,7 +6350,7 @@ class Information extends CI_Controller if ($meta_ct_page_type == "daytripform") { $productType = $meta_ct_page_type; - // $addonJs .= ''; + // $addonJs .= ''; //$data["ADDONCSS"] .= ''; } @@ -6738,8 +6738,11 @@ class Information extends CI_Controller if (! empty($information->ic_content) || ! empty($information->ic_summary) || $meta_pc_amp == 'yes') { $url = $this->config->item('site_url') . '/index.php/information/detail/?static_html_url=' . $url; } else { - $url = $this->config->item('site_url') . '/index.php/welcome/update_cache/?static_html_url=' . $url; - //$url = $this->config->item('site_url') . '/index.php/information/detail/?static_html_url=' . $url; + if ($information->ic_status == 0) { + $url = $this->config->item('site_url') . '/index.php/welcome/update_cache/?static_html_url=' . $url; + } else { + $url = $this->config->item('site_url') . '/index.php/information/detail/?static_html_url=' . $url; + } } if (isset($information->ic_type) && $information->ic_type == 'product') { $url = $this->config->item('site_url') . '/index.php/welcome/update_cache/?static_html_url=' . $tmp;