From 63a8dfce06826679a2ec12ab197d5f812f3600de Mon Sep 17 00:00:00 2001 From: candice Date: Thu, 17 Apr 2025 10:12:11 +0800 Subject: [PATCH 01/15] =?UTF-8?q?=E5=88=A0=E9=99=A4samoa=E7=94=B5=E8=AF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ah-gp-form.php | 252 +-- .../views/mobile_first/ah-info-page-form.php | 1499 +++++++++-------- .../views/mobile_first/ah-inquiry-form.php | 1 - .../ah-lantern-festival-gp-form.php | 840 +++++---- .../mobile_first/ah-lantern-form-2025.php | 1 - .../views/mobile_first/ah-lantern-form.php | 1 - .../mobile_first/ah-new-year-countdown.php | 1 - .../views/mobile_first/ah-tour-list-form.php | 1148 ++++++------- 8 files changed, 1756 insertions(+), 1987 deletions(-) diff --git a/application/views/mobile_first/ah-gp-form.php b/application/views/mobile_first/ah-gp-form.php index 0fa161c1..3d6767bf 100644 --- a/application/views/mobile_first/ah-gp-form.php +++ b/application/views/mobile_first/ah-gp-form.php @@ -71,257 +71,7 @@ - - + + \ No newline at end of file + \ No newline at end of file diff --git a/application/views/mobile_first/jh-inquiry-form.php b/application/views/mobile_first/jh-inquiry-form.php index ea0925ec..9b9edb6e 100644 --- a/application/views/mobile_first/jh-inquiry-form.php +++ b/application/views/mobile_first/jh-inquiry-form.php @@ -260,7 +260,6 @@ - From ca412a0de91e738ea3e31ee135b9f02b403307b7 Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Mon, 21 Apr 2025 13:59:52 +0800 Subject: [PATCH 03/15] =?UTF-8?q?GH=20article=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E4=BD=9C=E8=80=85=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/information.php | 34 ++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/application/controllers/information.php b/application/controllers/information.php index 48e6a1b7..8f98454a 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -1837,6 +1837,7 @@ class Information extends CI_Controller if (!empty($author)) { $data_H1['author'] = $author->OPI_FirstName; $data_H1['OPI_Code'] = $author->OPI_Code; + $data_H1['author_url'] = $this->get_author_url($author->OPI_Code); } else { $author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等 if (!empty($author_web)) { @@ -1856,8 +1857,8 @@ class Information extends CI_Controller } $article_structured_data_content = $this->load->view( - $template_path . '-structured-data-article', - array('information' => $information, 'author_name' => $data_H1['author']), + 'mobile_first/gh-structured-data-article', + array('information' => $information, 'author_name' => $data_H1['author'], 'author_url' => $data_H1['author_url']), true ); $template = str_replace('', $article_structured_data_content, $template); @@ -3129,7 +3130,7 @@ class Information extends CI_Controller if (!empty($meta_index_set)) { $data["meta_index_set"] = ''; } - + //总JS:为了方便以后js好维护,必须的把一些公用的JS统计到一个文件。但是又不是所有页面都需要调用这个基础js,所以必须在这里进行判断 $addBaseJs = false; @@ -5635,4 +5636,31 @@ class Information extends CI_Controller echo json_encode($data); return true; } + + public function get_author_url($OPI_Code) + { + $OPI_CodeUrls = [ + 'zzy' => 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', + '2' => 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', + 'HWT' => 'https://www.globalhighlights.com/aboutus/team/mike-he', + 'CA' => 'https://www.globalhighlights.com/aboutus/team/carol-wang', + 'SI' => 'https://www.globalhighlights.com/aboutus/team/simon-huang', + 'TJQ' => 'https://www.globalhighlights.com/aboutus/team/cindy-tang', + 'CLA' => 'https://www.globalhighlights.com/aboutus/team/claire-wang', + 'Albee' => 'https://www.globalhighlights.com/aboutus/team/albee-ning', + 'KM' => 'https://www.globalhighlights.com/aboutus/team/kimi-huang', + 'RY' => 'https://www.globalhighlights.com/aboutus/team/rita-yu', + 'QMY' => 'https://www.globalhighlights.com/aboutus/team/chris-quan', + 'CY' => 'https://www.globalhighlights.com/aboutus/team/cynthia-li', + 'Vicky' => 'https://www.globalhighlights.com/aboutus/team/vicky-leng', + 'LXW' => 'https://www.globalhighlights.com/aboutus/team/carper-li', + 'zzyGH' => 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', + ]; + + if (!empty($OPI_Code) && array_key_exists($OPI_Code, $OPI_CodeUrls)) { + return $OPI_CodeUrls[$OPI_Code]; + } else { + return ''; + } + } } From 48ce75bf6a4f2b3edb40499ce88f9daad326dd7e Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Mon, 21 Apr 2025 14:12:04 +0800 Subject: [PATCH 04/15] =?UTF-8?q?GH=20Articel=20=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E4=BD=9C=E8=80=85=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/gh-structured-data-article.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/views/mobile_first/gh-structured-data-article.php b/application/views/mobile_first/gh-structured-data-article.php index 241d36b8..4b8d99b3 100644 --- a/application/views/mobile_first/gh-structured-data-article.php +++ b/application/views/mobile_first/gh-structured-data-article.php @@ -15,6 +15,7 @@ "author": { "@type": "Person", "name": "" + "url": "" }, "publisher": { "@type": "Organization", From dfea53e36ce43acc1a9d40ac70efac52981212d2 Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Mon, 21 Apr 2025 14:19:33 +0800 Subject: [PATCH 05/15] =?UTF-8?q?=E4=BD=BF=E7=94=A8=E5=9F=9F=E5=90=8D?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E8=8E=B7=E5=8F=96=E4=BD=9C=E8=80=85=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/information.php | 34 ++++++++++++------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/application/controllers/information.php b/application/controllers/information.php index 8f98454a..84e8b460 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -1837,7 +1837,7 @@ class Information extends CI_Controller if (!empty($author)) { $data_H1['author'] = $author->OPI_FirstName; $data_H1['OPI_Code'] = $author->OPI_Code; - $data_H1['author_url'] = $this->get_author_url($author->OPI_Code); + $data_H1['author_url'] = $this->get_author_url('www.globalhighlights.com', $author->OPI_Code); } else { $author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等 if (!empty($author_web)) { @@ -5637,24 +5637,24 @@ class Information extends CI_Controller return true; } - public function get_author_url($OPI_Code) + public function get_author_url($domain_name, $OPI_Code) { $OPI_CodeUrls = [ - 'zzy' => 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', - '2' => 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', - 'HWT' => 'https://www.globalhighlights.com/aboutus/team/mike-he', - 'CA' => 'https://www.globalhighlights.com/aboutus/team/carol-wang', - 'SI' => 'https://www.globalhighlights.com/aboutus/team/simon-huang', - 'TJQ' => 'https://www.globalhighlights.com/aboutus/team/cindy-tang', - 'CLA' => 'https://www.globalhighlights.com/aboutus/team/claire-wang', - 'Albee' => 'https://www.globalhighlights.com/aboutus/team/albee-ning', - 'KM' => 'https://www.globalhighlights.com/aboutus/team/kimi-huang', - 'RY' => 'https://www.globalhighlights.com/aboutus/team/rita-yu', - 'QMY' => 'https://www.globalhighlights.com/aboutus/team/chris-quan', - 'CY' => 'https://www.globalhighlights.com/aboutus/team/cynthia-li', - 'Vicky' => 'https://www.globalhighlights.com/aboutus/team/vicky-leng', - 'LXW' => 'https://www.globalhighlights.com/aboutus/team/carper-li', - 'zzyGH' => 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', + 'zzy' => 'https://' . $domain_name .'/aboutus/team/ruru-zhou', + '2' => 'https://' . $domain_name .'/aboutus/team/ruru-zhou', + 'HWT' => 'https://' . $domain_name .'/aboutus/team/mike-he', + 'CA' => 'https://' . $domain_name .'/aboutus/team/carol-wang', + 'SI' => 'https://' . $domain_name .'/aboutus/team/simon-huang', + 'TJQ' => 'https://' . $domain_name .'/aboutus/team/cindy-tang', + 'CLA' => 'https://' . $domain_name .'/aboutus/team/claire-wang', + 'Albee' => 'https://' . $domain_name .'/aboutus/team/albee-ning', + 'KM' => 'https://' . $domain_name .'/aboutus/team/kimi-huang', + 'RY' => 'https://' . $domain_name .'/aboutus/team/rita-yu', + 'QMY' => 'https://' . $domain_name .'/aboutus/team/chris-quan', + 'CY' => 'https://' . $domain_name .'/aboutus/team/cynthia-li', + 'Vicky' => 'https://' . $domain_name .'/aboutus/team/vicky-leng', + 'LXW' => 'https://' . $domain_name .'/aboutus/team/carper-li', + 'zzyGH' => 'https://' . $domain_name .'/aboutus/team/ruru-zhou', ]; if (!empty($OPI_Code) && array_key_exists($OPI_Code, $OPI_CodeUrls)) { From 8875595741a0c8b5fa0907e43e916d4589eefaa0 Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Mon, 21 Apr 2025 14:21:59 +0800 Subject: [PATCH 06/15] =?UTF-8?q?JH=20Article=20=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E4=BD=9C=E8=80=85=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/information.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/controllers/information.php b/application/controllers/information.php index 84e8b460..e6e08021 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -2632,6 +2632,7 @@ class Information extends CI_Controller if (!empty($author)) { $data['author'] = $author->OPI_FirstName; $data['OPI_Code'] = $author->OPI_Code; + $data['author_url'] = $this->get_author_url('www.japanhighlights.com', $author->OPI_Code); } else { $author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等 if (!empty($author_web)) { @@ -2644,7 +2645,7 @@ class Information extends CI_Controller // 结构化标签:Article $article_structured_data_content = $this->load->view( $template_path . '-structured-data-article', - array('information' => $information, 'author' => $data['author']), + array('information' => $information, 'author_name' => $data['author'], 'author_url' => $data['author_url']), true ); $template = str_replace('', $article_structured_data_content, $template); From 66a4ba222c560b76f1e4b80c36a859bded029fcc Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Mon, 21 Apr 2025 14:27:31 +0800 Subject: [PATCH 07/15] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20JSON=20=E9=80=97?= =?UTF-8?q?=E5=8F=B7=E7=BC=BA=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/gh-structured-data-article.php | 2 +- application/views/mobile_first/jh-structured-data-article.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/application/views/mobile_first/gh-structured-data-article.php b/application/views/mobile_first/gh-structured-data-article.php index 4b8d99b3..0292ed9d 100644 --- a/application/views/mobile_first/gh-structured-data-article.php +++ b/application/views/mobile_first/gh-structured-data-article.php @@ -14,7 +14,7 @@ "dateModified": "", "author": { "@type": "Person", - "name": "" + "name": "", "url": "" }, "publisher": { diff --git a/application/views/mobile_first/jh-structured-data-article.php b/application/views/mobile_first/jh-structured-data-article.php index eca912e4..c57239a9 100644 --- a/application/views/mobile_first/jh-structured-data-article.php +++ b/application/views/mobile_first/jh-structured-data-article.php @@ -14,7 +14,8 @@ "dateModified": "", "author": { "@type": "Person", - "name": "" + "name": "", + "url": "" }, "publisher": { "@type": "Organization", From f32d2833e9e3e6abdf41777b7ef74d85ea1b6ea0 Mon Sep 17 00:00:00 2001 From: candice Date: Mon, 21 Apr 2025 16:44:55 +0800 Subject: [PATCH 08/15] =?UTF-8?q?=E5=88=A0=E9=99=A4Guernsey=E7=94=B5?= =?UTF-8?q?=E8=AF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ah-gp-form.php | 476 +++++++++++++----- .../views/mobile_first/ah-info-page-form.php | 1 - .../views/mobile_first/ah-inquiry-form.php | 1 - .../ah-lantern-festival-gp-form.php | 1 - .../mobile_first/ah-lantern-form-2025.php | 1 - .../views/mobile_first/ah-lantern-form.php | 1 - .../mobile_first/ah-new-year-countdown.php | 1 - .../views/mobile_first/ah-tour-list-form.php | 1 - 8 files changed, 362 insertions(+), 121 deletions(-) diff --git a/application/views/mobile_first/ah-gp-form.php b/application/views/mobile_first/ah-gp-form.php index 3d6767bf..8f3a965a 100644 --- a/application/views/mobile_first/ah-gp-form.php +++ b/application/views/mobile_first/ah-gp-form.php @@ -1,102 +1,349 @@ - +
-

Inquire now! Your 1:1 travel consultant will reply within 1 working day.

-
- +

Inquire now! Your 1:1 travel consultant will + reply within 1 working day.

+ + -
-
+
+

Traveler numbers for your group:

-
-

- Adults and kids (≥10 years old) -

-
- - +

+ Adults and kids (≥10 years old) +

+
+ + - -
+
- -
-

Children

-
-

3-9 yrs old

- -
-
-

0-2 yrs old

- -
+
+ +
+

Children

+
+

3-9 yrs old

+ +
+
+

0-2 yrs old

+
+
+
+ + + + - - - - - - - - - - - -

+

Please verify your email.
+
+ + + + + + +

I am also available on:

-
- - -
-
- - -
+
+ + +
+
+ + +
- - - - - + + + + +
- - \ No newline at end of file + + + \ No newline at end of file diff --git a/application/views/mobile_first/ah-info-page-form.php b/application/views/mobile_first/ah-info-page-form.php index c05eb57b..5382d71a 100644 --- a/application/views/mobile_first/ah-info-page-form.php +++ b/application/views/mobile_first/ah-info-page-form.php @@ -321,7 +321,6 @@ - diff --git a/application/views/mobile_first/ah-inquiry-form.php b/application/views/mobile_first/ah-inquiry-form.php index ef8f8b09..dde0daaf 100644 --- a/application/views/mobile_first/ah-inquiry-form.php +++ b/application/views/mobile_first/ah-inquiry-form.php @@ -346,7 +346,6 @@ - diff --git a/application/views/mobile_first/ah-lantern-festival-gp-form.php b/application/views/mobile_first/ah-lantern-festival-gp-form.php index 3f953fa2..a3703919 100644 --- a/application/views/mobile_first/ah-lantern-festival-gp-form.php +++ b/application/views/mobile_first/ah-lantern-festival-gp-form.php @@ -146,7 +146,6 @@ - diff --git a/application/views/mobile_first/ah-lantern-form-2025.php b/application/views/mobile_first/ah-lantern-form-2025.php index c2584a48..71f40a4d 100644 --- a/application/views/mobile_first/ah-lantern-form-2025.php +++ b/application/views/mobile_first/ah-lantern-form-2025.php @@ -210,7 +210,6 @@ background: #fff;margin-top: 15px; margin-bottom: 20px; display: none;"> - diff --git a/application/views/mobile_first/ah-lantern-form.php b/application/views/mobile_first/ah-lantern-form.php index b8f8d942..bddeaff2 100644 --- a/application/views/mobile_first/ah-lantern-form.php +++ b/application/views/mobile_first/ah-lantern-form.php @@ -231,7 +231,6 @@ - diff --git a/application/views/mobile_first/ah-new-year-countdown.php b/application/views/mobile_first/ah-new-year-countdown.php index cb511e51..039e535b 100644 --- a/application/views/mobile_first/ah-new-year-countdown.php +++ b/application/views/mobile_first/ah-new-year-countdown.php @@ -225,7 +225,6 @@ - diff --git a/application/views/mobile_first/ah-tour-list-form.php b/application/views/mobile_first/ah-tour-list-form.php index d72430a3..940f4385 100644 --- a/application/views/mobile_first/ah-tour-list-form.php +++ b/application/views/mobile_first/ah-tour-list-form.php @@ -321,7 +321,6 @@ - From 8bf774fa17966ab53e936ce6c65bbc8b4c25f1b9 Mon Sep 17 00:00:00 2001 From: candice Date: Mon, 21 Apr 2025 16:47:04 +0800 Subject: [PATCH 09/15] =?UTF-8?q?=E5=88=A0=E9=99=A4Guernsey=E7=94=B5?= =?UTF-8?q?=E8=AF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ch-info-page-form.php | 1 - application/views/mobile_first/ch-inquiry-form.php | 1 - 2 files changed, 2 deletions(-) diff --git a/application/views/mobile_first/ch-info-page-form.php b/application/views/mobile_first/ch-info-page-form.php index 81f47431..e4e26cec 100644 --- a/application/views/mobile_first/ch-info-page-form.php +++ b/application/views/mobile_first/ch-info-page-form.php @@ -356,7 +356,6 @@ margin-top: 5px;font-size: 18px; - diff --git a/application/views/mobile_first/ch-inquiry-form.php b/application/views/mobile_first/ch-inquiry-form.php index e20acad0..22b93eb6 100644 --- a/application/views/mobile_first/ch-inquiry-form.php +++ b/application/views/mobile_first/ch-inquiry-form.php @@ -273,7 +273,6 @@ - From 8a0dda36ba8cab0c77958cc98d1e18e80f53831d Mon Sep 17 00:00:00 2001 From: candice Date: Mon, 21 Apr 2025 16:48:29 +0800 Subject: [PATCH 10/15] =?UTF-8?q?=E5=88=A0=E9=99=A4Guernsey=E7=94=B5?= =?UTF-8?q?=E8=AF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/gh-info-page-form.php | 1 - application/views/mobile_first/gh-tour-form.php | 1 - application/views/mobile_first/jh-gp-form.php | 1 - application/views/mobile_first/jh-inquiry-form.php | 1 - 4 files changed, 4 deletions(-) diff --git a/application/views/mobile_first/gh-info-page-form.php b/application/views/mobile_first/gh-info-page-form.php index ff3e1148..b699d919 100644 --- a/application/views/mobile_first/gh-info-page-form.php +++ b/application/views/mobile_first/gh-info-page-form.php @@ -336,7 +336,6 @@ - diff --git a/application/views/mobile_first/gh-tour-form.php b/application/views/mobile_first/gh-tour-form.php index 9c5c528c..08e09348 100644 --- a/application/views/mobile_first/gh-tour-form.php +++ b/application/views/mobile_first/gh-tour-form.php @@ -354,7 +354,6 @@ - diff --git a/application/views/mobile_first/jh-gp-form.php b/application/views/mobile_first/jh-gp-form.php index 5dc7db7b..cbd240e1 100644 --- a/application/views/mobile_first/jh-gp-form.php +++ b/application/views/mobile_first/jh-gp-form.php @@ -165,7 +165,6 @@ - diff --git a/application/views/mobile_first/jh-inquiry-form.php b/application/views/mobile_first/jh-inquiry-form.php index 9b9edb6e..959a5d8a 100644 --- a/application/views/mobile_first/jh-inquiry-form.php +++ b/application/views/mobile_first/jh-inquiry-form.php @@ -346,7 +346,6 @@ - From 1d710e1f117796c85a3adcac5d83f2cafdb57458 Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Tue, 22 Apr 2025 09:14:41 +0800 Subject: [PATCH 11/15] =?UTF-8?q?AH=E3=80=81CH=20Article=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E4=BD=9C=E8=80=85=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/information.php | 6 ++++-- .../views/mobile_first/ah-structured-data-article.php | 3 ++- .../views/mobile_first/ch-structured-data-article.php | 3 ++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/application/controllers/information.php b/application/controllers/information.php index e6e08021..9108de84 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -1097,6 +1097,7 @@ class Information extends CI_Controller if (!empty($author)) { $data_H1['author'] = $author->OPI_FirstName; $data_H1['OPI_Code'] = $author->OPI_Code; + $data_H1['author_url'] = $this->get_author_url('www.chinahighlights.com', $author->OPI_Code); } else { $author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等 if (!empty($author_web)) { @@ -1150,7 +1151,7 @@ class Information extends CI_Controller $article_structured_data_content = $this->load->view( $template_path . '-structured-data-article', - array('information' => $information, 'author' => $author), + array('information' => $information, 'author_name' => $data_H1['author'], 'author_url' => $data_H1['author_url']), true ); $template = str_replace('', $article_structured_data_content, $template); @@ -2227,6 +2228,7 @@ class Information extends CI_Controller if (!empty($author)) { $data['author'] = $author->OPI_FirstName; $data['OPI_Code'] = $author->OPI_Code; + $data['author_url'] = $this->get_author_url('www.asiahighlights.com', $author->OPI_Code); } else { $author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等 if (!empty($author_web)) { @@ -2239,7 +2241,7 @@ class Information extends CI_Controller // 结构化标签:Article $article_structured_data_content = $this->load->view( $template_path . '-structured-data-article', - array('information' => $information, 'author' => $data['author']), + array('information' => $information, 'author_name' => $data['author'], 'author_url' => $data['author_url']), true ); $template = str_replace('', $article_structured_data_content, $template); diff --git a/application/views/mobile_first/ah-structured-data-article.php b/application/views/mobile_first/ah-structured-data-article.php index 75a180a3..71da38c6 100644 --- a/application/views/mobile_first/ah-structured-data-article.php +++ b/application/views/mobile_first/ah-structured-data-article.php @@ -14,7 +14,8 @@ "dateModified": "", "author": { "@type": "Person", - "name": "" + "name": "", + "url": "" }, "publisher": { "@type": "Organization", diff --git a/application/views/mobile_first/ch-structured-data-article.php b/application/views/mobile_first/ch-structured-data-article.php index 40624411..9c503cc1 100644 --- a/application/views/mobile_first/ch-structured-data-article.php +++ b/application/views/mobile_first/ch-structured-data-article.php @@ -14,7 +14,8 @@ "dateModified": "", "author": { "@type": "Person", - "name": "OPI_FirstName; ?>" + "name": "", + "url": "" }, "publisher": { "@type": "Organization", From 7dc6029180b25044b08714fa9693057c7b454c9b Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Tue, 22 Apr 2025 09:25:48 +0800 Subject: [PATCH 12/15] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20CH=20=E4=BD=9C?= =?UTF-8?q?=E8=80=85=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/information.php | 20 +++++++++++++ application/views/mobile_first/ch-h1.php | 38 ++++++++++++------------ 2 files changed, 39 insertions(+), 19 deletions(-) diff --git a/application/controllers/information.php b/application/controllers/information.php index 9108de84..79bf04ff 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -5660,6 +5660,26 @@ class Information extends CI_Controller 'zzyGH' => 'https://' . $domain_name .'/aboutus/team/ruru-zhou', ]; + if ($domain_name == 'www.chinahighlights.com') { + $OPI_CodeUrls = [ + 'zzy' => 'https://www.chinahighlights.com/aboutus/team/ruru-zhou.htm', + '2' => 'https://www.chinahighlights.com/aboutus/team/ruru-zhou.htm', + 'HWT' => 'https://www.chinahighlights.com/aboutus/team/mike-he.htm', + 'CA' => 'https://www.chinahighlights.com/aboutus/team/carol-wang.htm', + 'SI' => 'https://www.chinahighlights.com/aboutus/team/simon-huang.htm', + 'TJQ' => 'https://www.chinahighlights.com/aboutus/team/cindy-tang.htm', + 'CLA' => 'https://www.chinahighlights.com/aboutus/team/claire-wang.htm', + 'Albee' => 'https://www.chinahighlights.com/aboutus/team/albee-ning.htm', + 'KM' => 'https://www.chinahighlights.com/aboutus/team/kimi-huang.htm', + 'RY' => 'https://www.chinahighlights.com/aboutus/team/rita-yu.htm', + 'QMY' => 'https://www.chinahighlights.com/aboutus/team/chris-quan.htm', + 'CY' => 'https://www.chinahighlights.com/aboutus/team/cynthia-li.htm', + 'Vicky' => 'https://www.chinahighlights.com/aboutus/team/vicky-leng.htm', + 'LXW' => 'https://www.chinahighlights.com/aboutus/team/carper-li.htm', + 'zzyGH' => 'https://www.chinahighlights.com/aboutus/team/ruru-zhou.htm', + ]; + } + if (!empty($OPI_Code) && array_key_exists($OPI_Code, $OPI_CodeUrls)) { return $OPI_CodeUrls[$OPI_Code]; } else { diff --git a/application/views/mobile_first/ch-h1.php b/application/views/mobile_first/ch-h1.php index 6b7caeef..c4ebee35 100644 --- a/application/views/mobile_first/ch-h1.php +++ b/application/views/mobile_first/ch-h1.php @@ -5,8 +5,8 @@ @@ -21,28 +21,28 @@

- 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', - '2' => 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', - 'HWT' => 'https://www.globalhighlights.com/aboutus/team/mike-he', - 'CA' => 'https://www.globalhighlights.com/aboutus/team/carol-wang', - 'SI' => 'https://www.globalhighlights.com/aboutus/team/simon-huang', - 'TJQ' => 'https://www.globalhighlights.com/aboutus/team/cindy-tang', - 'CLA' => 'https://www.globalhighlights.com/aboutus/team/claire-wang', - 'Albee' => 'https://www.globalhighlights.com/aboutus/team/albee-ning', - 'KM' => 'https://www.globalhighlights.com/aboutus/team/kimi-huang', - 'RY' => 'https://www.globalhighlights.com/aboutus/team/rita-yu', - 'QMY' => 'https://www.globalhighlights.com/aboutus/team/chris-quan', - 'CY' => 'https://www.globalhighlights.com/aboutus/team/cynthia-li', - 'Vicky' => 'https://www.globalhighlights.com/aboutus/team/vicky-leng', - 'LXW' => 'https://www.globalhighlights.com/aboutus/team/carper-li', - 'zzyGH' => 'https://www.globalhighlights.com/aboutus/team/ruru-zhou', + 'zzy' => 'https://www.chinahighlights.com/aboutus/team/ruru-zhou.htm', + '2' => 'https://www.chinahighlights.com/aboutus/team/ruru-zhou.htm', + 'HWT' => 'https://www.chinahighlights.com/aboutus/team/mike-he.htm', + 'CA' => 'https://www.chinahighlights.com/aboutus/team/carol-wang.htm', + 'SI' => 'https://www.chinahighlights.com/aboutus/team/simon-huang.htm', + 'TJQ' => 'https://www.chinahighlights.com/aboutus/team/cindy-tang.htm', + 'CLA' => 'https://www.chinahighlights.com/aboutus/team/claire-wang.htm', + 'Albee' => 'https://www.chinahighlights.com/aboutus/team/albee-ning.htm', + 'KM' => 'https://www.chinahighlights.com/aboutus/team/kimi-huang.htm', + 'RY' => 'https://www.chinahighlights.com/aboutus/team/rita-yu.htm', + 'QMY' => 'https://www.chinahighlights.com/aboutus/team/chris-quan.htm', + 'CY' => 'https://www.chinahighlights.com/aboutus/team/cynthia-li.htm', + 'Vicky' => 'https://www.chinahighlights.com/aboutus/team/vicky-leng.htm', + 'LXW' => 'https://www.chinahighlights.com/aboutus/team/carper-li.htm', + 'zzyGH' => 'https://www.chinahighlights.com/aboutus/team/ruru-zhou.htm', ]; $OPI_Code = empty($OPI_Code) ? '' : $OPI_Code; if (!empty($meta_news_createdate)) {?>
- Written by + Written by From 231c19adac82d565760ececf16f8d60fdd9feeef Mon Sep 17 00:00:00 2001 From: candice Date: Wed, 23 Apr 2025 11:57:51 +0800 Subject: [PATCH 13/15] =?UTF-8?q?Anguilla=20=E7=94=B5=E8=AF=9D=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/views/mobile_first/ah-gp-form.php | 2 +- application/views/mobile_first/ah-info-page-form.php | 2 +- application/views/mobile_first/ah-inquiry-form.php | 2 +- application/views/mobile_first/ah-lantern-festival-gp-form.php | 2 +- application/views/mobile_first/ah-lantern-form-2025.php | 2 +- application/views/mobile_first/ah-lantern-form.php | 2 +- application/views/mobile_first/ah-new-year-countdown.php | 2 +- application/views/mobile_first/ah-tour-list-form.php | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/application/views/mobile_first/ah-gp-form.php b/application/views/mobile_first/ah-gp-form.php index 8f3a965a..952c86f0 100644 --- a/application/views/mobile_first/ah-gp-form.php +++ b/application/views/mobile_first/ah-gp-form.php @@ -81,7 +81,7 @@ - + diff --git a/application/views/mobile_first/ah-info-page-form.php b/application/views/mobile_first/ah-info-page-form.php index 5382d71a..a6bfa884 100644 --- a/application/views/mobile_first/ah-info-page-form.php +++ b/application/views/mobile_first/ah-info-page-form.php @@ -237,7 +237,7 @@ - + diff --git a/application/views/mobile_first/ah-inquiry-form.php b/application/views/mobile_first/ah-inquiry-form.php index dde0daaf..c850498b 100644 --- a/application/views/mobile_first/ah-inquiry-form.php +++ b/application/views/mobile_first/ah-inquiry-form.php @@ -262,7 +262,7 @@ - + diff --git a/application/views/mobile_first/ah-lantern-festival-gp-form.php b/application/views/mobile_first/ah-lantern-festival-gp-form.php index a3703919..d22b91f6 100644 --- a/application/views/mobile_first/ah-lantern-festival-gp-form.php +++ b/application/views/mobile_first/ah-lantern-festival-gp-form.php @@ -62,7 +62,7 @@ - + diff --git a/application/views/mobile_first/ah-lantern-form-2025.php b/application/views/mobile_first/ah-lantern-form-2025.php index 71f40a4d..d749fe72 100644 --- a/application/views/mobile_first/ah-lantern-form-2025.php +++ b/application/views/mobile_first/ah-lantern-form-2025.php @@ -126,7 +126,7 @@ background: #fff;margin-top: 15px; margin-bottom: 20px; display: none;"> - + diff --git a/application/views/mobile_first/ah-lantern-form.php b/application/views/mobile_first/ah-lantern-form.php index bddeaff2..f58a6762 100644 --- a/application/views/mobile_first/ah-lantern-form.php +++ b/application/views/mobile_first/ah-lantern-form.php @@ -147,7 +147,7 @@ - + diff --git a/application/views/mobile_first/ah-new-year-countdown.php b/application/views/mobile_first/ah-new-year-countdown.php index 039e535b..ba402959 100644 --- a/application/views/mobile_first/ah-new-year-countdown.php +++ b/application/views/mobile_first/ah-new-year-countdown.php @@ -141,7 +141,7 @@ - + diff --git a/application/views/mobile_first/ah-tour-list-form.php b/application/views/mobile_first/ah-tour-list-form.php index 940f4385..2a9002bc 100644 --- a/application/views/mobile_first/ah-tour-list-form.php +++ b/application/views/mobile_first/ah-tour-list-form.php @@ -237,7 +237,7 @@ - + From a5274c0664a69e0eb3670c4bcb3d2139ccc1c48c Mon Sep 17 00:00:00 2001 From: candice Date: Wed, 23 Apr 2025 12:00:08 +0800 Subject: [PATCH 14/15] =?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/ah-gp-form.php | 1 - application/views/mobile_first/ah-info-page-form.php | 1 - application/views/mobile_first/ah-inquiry-form.php | 1 - application/views/mobile_first/ah-lantern-festival-gp-form.php | 1 - application/views/mobile_first/ah-lantern-form-2025.php | 1 - application/views/mobile_first/ah-lantern-form.php | 1 - application/views/mobile_first/ah-new-year-countdown.php | 1 - application/views/mobile_first/ah-tour-list-form.php | 1 - 8 files changed, 8 deletions(-) diff --git a/application/views/mobile_first/ah-gp-form.php b/application/views/mobile_first/ah-gp-form.php index 952c86f0..9b29fa03 100644 --- a/application/views/mobile_first/ah-gp-form.php +++ b/application/views/mobile_first/ah-gp-form.php @@ -74,7 +74,6 @@
Please verify your email.
-
-
diff --git a/application/views/mobile_first/ah-lantern-festival-gp-form.php b/application/views/mobile_first/ah-lantern-festival-gp-form.php index d22b91f6..ec5662fd 100644 --- a/application/views/mobile_first/ah-lantern-festival-gp-form.php +++ b/application/views/mobile_first/ah-lantern-festival-gp-form.php @@ -55,7 +55,6 @@
Please verify your email.
-