diff --git a/application/controllers/information.php b/application/controllers/information.php index adf6a95e..b9a683e8 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -913,8 +913,17 @@ class Information extends CI_Controller } } + // 检查图片地址格式 + $parsed_photo = $information->ic_photo; + $parsed_photo_url = parse_url($information->ic_photo); + if ( + (!isset($parsed_photo_url['host']) || !isset($parsed_photo_url['scheme'])) && isset($parsed_photo_url['path']) + ) { + $parsed_photo = 'https://images.chinahighlights.com' . $parsed_photo_url['path']; + } + $data_H1['ic_title'] = $information->ic_title; - $data_H1['ic_photo'] = $information->ic_photo; + $data_H1['ic_photo'] = $parsed_photo; $data_H1['breadcrumb_data'] = $breadcrumb_data; $data_H1['ads_by_google'] = $ads_by_google; $data_H1['ic_datetime'] = $information->ic_datetime; @@ -1702,6 +1711,22 @@ class Information extends CI_Controller } } + // 未勾选In Article 广告时,加入标签 ,让 ezoic 识别出该页面不展示广告。 + $meta_google_ad_article = get_meta($information->ic_id, 'meta_google_ad_article'); + if (empty($meta_google_ad_article) || !$meta_google_ad_article) { + $template = str_replace( + '', + '', + $template + ); + } else { + $template = str_replace( + '', + '', + $template + ); + } + $why_us_covid_list_pc = $this->load->view( $template_path . '-why-us-covid-list-pc', array(), diff --git a/application/third_party/trainsystem/controllers/addorders.php b/application/third_party/trainsystem/controllers/addorders.php index 87151452..5bb18194 100644 --- a/application/third_party/trainsystem/controllers/addorders.php +++ b/application/third_party/trainsystem/controllers/addorders.php @@ -790,6 +790,10 @@ class addorders extends CI_Controller{ $passagersdata[$i]->countryCode = ""; $passagersdata[$i]->contactMobile = ""; $passagersdata[$i]->contactEmail = ""; + if (!empty($PassagerInfo->BPE_Nationality)){ + $passagersdata[$i]->regionCode = $PassagerInfo->BPE_Nationality; //国家简码 美国us ,中国cn + } + $i++; } //乘客人信息 diff --git a/application/third_party/trainsystem/controllers/pages.php b/application/third_party/trainsystem/controllers/pages.php index 35bb6d95..b4c46a50 100644 --- a/application/third_party/trainsystem/controllers/pages.php +++ b/application/third_party/trainsystem/controllers/pages.php @@ -55,14 +55,15 @@ class pages extends CI_Controller{ $list->cols_id=$cols_id; } - //查询聚合余额 - $back_data = GetPost_http("http://op.juhe.cn/trainTickets/balance.php?key=79f03107b921ef31310bd40a1415c1cb"); - $back_data = json_decode($back_data); - if(!empty($back_data->result)){ - $list->balance = $back_data->result; - }else{ - $list->balance = "NULL"; - } + // //查询聚合余额 + // $back_data = GetPost_http("http://op.juhe.cn/trainTickets/balance.php?key=79f03107b921ef31310bd40a1415c1cb"); + // $back_data = json_decode($back_data); + // if(!empty($back_data->result)){ + // $list->balance = $back_data->result; + // }else{ + // $list->balance = "NULL"; + // } + $list->balance = "NULL"; // print_r(json_encode($list)); $this->load->view('common/header'); $this->load->view('homepage',$list); diff --git a/application/third_party/trainsystem/models/BIZ_train_model.php b/application/third_party/trainsystem/models/BIZ_train_model.php index 8f561894..040b5437 100644 --- a/application/third_party/trainsystem/models/BIZ_train_model.php +++ b/application/third_party/trainsystem/models/BIZ_train_model.php @@ -23,6 +23,7 @@ class BIZ_train_model extends CI_Model { ,(case ISDATE(BPE_PassExpdate) when 1 then CONVERT(VARCHAR(10),CONVERT(datetime,BPE_PassExpdate,120),120) else null end) as BPE_PassExpdate + ,(select top 1 COI_Code from COuntryInfo where COI_SN=bbp.BPE_Nationality) as BPE_Nationality FROM BIZ_BookPeople bbp WHERE BPE_SN in(".$bpe_sn.") "; @@ -55,6 +56,8 @@ class BIZ_train_model extends CI_Model { ,(case ISDATE(BPE_PassExpdate) when 1 then CONVERT(VARCHAR(10),CONVERT(datetime,BPE_PassExpdate,120),120) else null end) as BPE_PassExpdate + ,(select top 1 COI_Code from COuntryInfo where COI_SN=bbp.BPE_Nationality) as BPE_Nationality + ,(select top 1 COI_ID from COuntryInfo where COI_SN=bbp.BPE_Nationality) as Nationality FROM BIZ_BookPeople bbp WHERE EXISTS( SELECT TOP 1 1 diff --git a/application/third_party/trainsystem/views/homepage.php b/application/third_party/trainsystem/views/homepage.php index 0d0db302..096ec0f8 100644 --- a/application/third_party/trainsystem/views/homepage.php +++ b/application/third_party/trainsystem/views/homepage.php @@ -137,6 +137,7 @@ function selseat(seat){ 年龄类型 出生年月 证件有效期 + 国籍 @@ -153,6 +154,7 @@ function selseat(seat){ BPE_GuestType==1?"成人":($p->BPE_GuestType==2?"儿童":"婴儿");?> BPE_BirthDate;?> BPE_PassExpdate;?> + Nationality . "(".$p->BPE_Nationality .")"; ?> diff --git a/application/views/mobile_first/ah-h1.php b/application/views/mobile_first/ah-h1.php index 4df674c9..4c8bbc99 100644 --- a/application/views/mobile_first/ah-h1.php +++ b/application/views/mobile_first/ah-h1.php @@ -1,11 +1,5 @@
- - - - <?php echo !empty($information->ic_title)?$information->ic_title:'H1 title asiahighlights mobile first template'; ?> -
Home diff --git a/application/views/mobile_first/ah-info-page-form.php b/application/views/mobile_first/ah-info-page-form.php index 2960f076..03df062e 100644 --- a/application/views/mobile_first/ah-info-page-form.php +++ b/application/views/mobile_first/ah-info-page-form.php @@ -168,9 +168,8 @@
diff --git a/application/views/mobile_first/ah-inquiry-form.php b/application/views/mobile_first/ah-inquiry-form.php index 689050e4..20f6bb0f 100644 --- a/application/views/mobile_first/ah-inquiry-form.php +++ b/application/views/mobile_first/ah-inquiry-form.php @@ -186,9 +186,8 @@
diff --git a/application/views/mobile_first/ah-pc.php b/application/views/mobile_first/ah-pc.php index 89c3e04f..7b4e79ba 100644 --- a/application/views/mobile_first/ah-pc.php +++ b/application/views/mobile_first/ah-pc.php @@ -50,10 +50,10 @@
How to Plan an Incredible Family Trip to Japan in 2024/2025. Learn more.
- + @@ -219,21 +240,25 @@
-

Why Travel with Asia Highlights (98.8% positive customer reviews among 10,000+)

+

Why Asia Highlights (10,000+ reviews & 98.8% 5-star rating)

+
-
Create my trip +
Create + my trip
@@ -246,8 +271,8 @@
- Start planning your tailor-made tour with 1-1 help - from our travel advisors. + Start planning your tailor-made tour with 1-1 help + from our travel advisors. Create My Trip @@ -259,285 +284,188 @@
-

Sign up to Our Newsletter

-

Be the first to receive exciting updates, exclusive promotions, and valuable travel tips from our - team of experts.

-
- - - -
+

Sign up to Our Newsletter

+

Be the first to receive exciting updates, exclusive promotions, and valuable + travel tips from our + team of experts.

+ Click to sign up
-
+
-

The Asia Highlights Experience

- +

Why Asia Highlights

+
- 1-to-1 Expert Planning -

1-to-1 Expert Planning

-

Your tour will be tailor-made to suit you by a destination expert. Your personal - travel advisor will always reply within 24 hours.

+
Save Your Time
+ +

Save Your Time

+
    +
  • Less research, more enjoyment!
  • +
  • Real-time 1V1 expert planning.
  • +
  • Seamless coordination
  • +
+
- Personal Journeys -

Personal Journeys

-

Enjoy having your own personal local guide and ride. Explore destinations at your own - pace. Have as much flexibility as possible.

+
Maximize Your Flexibility
+

Maximize Your Flexibility

+
    +
  • Your own personal guide and ride.
  • +
  • Explore at your own pace.
  • +
  • Unparalleled flexibility, impossible on a group tour.
  • +
- Authentic Experiences -

Authentic Experiences

-

Go beyond the sightseeing. Understand the destinations by practicing the local - culture and interacting with local people.

+
Ensure Your Satisfactory
+

Ensure Your Satisfactory

+
    +
  • Well-trained elite 20% of guides.
  • +
  • 20% vacancy on vehicles.
  • +
  • 24/7 emergency support.
  • +
- One-Stop Service -

One-Stop Service

-

Leave all the booking work to us, including international and internal - transportation, visas, hotels, meals, and activities.

+
Celebrate Your Journey +
+

Celebrate Your Journey

+
    +
  • Family adventures
  • +
  • Celebrate milestones with style!
  • +
  • Photographer service for special moments
  • +
+
-
-

Where Can We Take You Today?

- - -

China Tours

- + + +
-
-
-
About Us
-
At Asia Highlights, we are committed to providing you a premium, - quality private tour, whether it's a milestone trip, family trip, or bucketlist trip — your - planning will be made easy with just one specialist throughout. Know more - ... -
- - Rated - 4.9 out of 5 | Excellent
- China Highlights International Travel Service Co., LTD
- Corporate Number: 914503003486045699 +
+
+
+ +
+ + Rated 5 out of 5 | 98.8% Excellence
+ China Highlights International
Travel Service Co., LTD
-
- -
- -
- -
Featured on
- Medias -
- -
-
@@ -549,71 +477,11 @@ originalsrc="https://data.chinahighlights.com/image/asia/asia-highlights-bottom-logo.png" width="114" height="71" loader="lazy" class="img-responsive bottomlogopc"> © 2016-2024 Asia Highlights — Discovery Your Way! - Privacy Policy | Terms +
- - - - @@ -729,20 +597,5 @@ function validateNewsletterForm() { - - \ No newline at end of file diff --git a/application/views/mobile_first/ah-tips-right-list.php b/application/views/mobile_first/ah-tips-right-list.php index 211b7943..c0c9480c 100644 --- a/application/views/mobile_first/ah-tips-right-list.php +++ b/application/views/mobile_first/ah-tips-right-list.php @@ -1,22 +1,22 @@
-
Popular tours
-
+ + -
Make the most of your time
-
+ +
Make the most of your time
-
Choose the best time to visit
-
+ +
Choose the best time to visit
    $info) {?>
  • ic_title ?>
  • diff --git a/application/views/mobile_first/ah-tour-list-form.php b/application/views/mobile_first/ah-tour-list-form.php index 1f500f3f..0dce98f5 100644 --- a/application/views/mobile_first/ah-tour-list-form.php +++ b/application/views/mobile_first/ah-tour-list-form.php @@ -171,44 +171,46 @@
diff --git a/application/views/mobile_first/ah.php b/application/views/mobile_first/ah.php index ef6e459b..cfdf1c98 100644 --- a/application/views/mobile_first/ah.php +++ b/application/views/mobile_first/ah.php @@ -177,74 +177,73 @@

Be the first to receive exciting updates, exclusive promotions, and valuable travel tips from our team of experts.

-
- - - -
+ Click to sign up
-

The Asia Highlights Experience

- +

Why Asia Highlights

- - - - - - - - - -
-
- 1-to-1 Expert Planning -

1-to-1 Expert Planning

-

Your tour will be tailor-made to suit you by a destination expert. Your personal travel advisor - will always reply within 24 hours.

-
-
-
- Personal Journeys -

Personal Journeys

-

Enjoy having your own personal local guide and ride. Explore destinations at your own pace. Have as - much flexibility as possible.

-
-
-
- Authentic Experiences -

Authentic Experiences

-

Go beyond the sightseeing. Understand the destinations by practicing the local culture and - interacting with local people.

-
-
-
- One-Stop Service -

One-Stop Service

-

Leave all the booking work to us, including international and internal transportation, visas, - hotels, meals, and activities.

-
-
+ + + + + + + + + + +
+
+
Save Your Time
+ +

Save Your Time

+
    +
  • Less research, more enjoyment!
  • +
  • Real-time 1V1 expert planning.
  • +
  • Seamless coordination
  • +
+ +
+
+
+
Maximize Your Flexibility
+

Maximize Your Flexibility

+
    +
  • Your own personal guide and ride.
  • +
  • Explore at your own pace.
  • +
  • Unparalleled flexibility, impossible on a group tour.
  • +
+
+
+
+
Ensure Your Satisfactory
+

Ensure Your Satisfactory

+
    +
  • Well-trained elite 20% of guides.
  • +
  • 20% vacancy on vehicles.
  • +
  • 24/7 emergency support.
  • +
+
+
+
+
Celebrate Your Journey
+

Celebrate Your Journey

+
    +
  • Family adventures
  • +
  • Celebrate milestones with style!
  • +
  • Photographer service for special moments
  • +
+ +
+
- -
+
-
At Asia Highlights, we are committed to providing you a premium, quality private - tour, whether it's a milestone trip, family trip, or bucketlist trip — your planning will be made easy with - just one specialist throughout. Know more... +
+ - Rated 4.9 out of 5 | Excellent + Rated 5 out of 5 | 98.8% Excellence
+ China Highlights International
Travel Service Co., LTD
+
Featured on @@ -436,105 +353,14 @@
- Company Info - China Highlights International Travel Service Co., LTD
- Corporate Number: 914503003486045699 + Address + Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China
- - - - + @@ -663,20 +489,4 @@ - - - \ No newline at end of file diff --git a/application/views/mobile_first/ch-h1.php b/application/views/mobile_first/ch-h1.php index 07ebc4e8..11b7b02c 100644 --- a/application/views/mobile_first/ch-h1.php +++ b/application/views/mobile_first/ch-h1.php @@ -3,7 +3,7 @@
- <?php echo !empty($ic_title)?$ic_title:'H1 title Chinahighlights mobile first template'; ?>
diff --git a/application/views/mobile_first/ch-info-page-form.php b/application/views/mobile_first/ch-info-page-form.php index 6304bd4f..9355e8cc 100644 --- a/application/views/mobile_first/ch-info-page-form.php +++ b/application/views/mobile_first/ch-info-page-form.php @@ -529,13 +529,7 @@ margin-top: 5px;font-size: 18px; Inquiry
- -
- china highlights' wechat code -
Quickly inquire about this tour via our WeChat: chinahighlightstour -
-
- +
diff --git a/application/views/mobile_first/ch-inquiry-form.php b/application/views/mobile_first/ch-inquiry-form.php index 19bdcd36..a130ffe5 100644 --- a/application/views/mobile_first/ch-inquiry-form.php +++ b/application/views/mobile_first/ch-inquiry-form.php @@ -444,12 +444,6 @@ Inquiry
- -
- china highlights' wechat code -
Quickly inquire about this tour via our WeChat: chinahighlightstour -
-
diff --git a/application/views/mobile_first/ch-pc.php b/application/views/mobile_first/ch-pc.php index cd7a2078..19125d18 100644 --- a/application/views/mobile_first/ch-pc.php +++ b/application/views/mobile_first/ch-pc.php @@ -377,48 +377,63 @@
-
-

The China Highlights Experience

+
+

Why China Highlights

@@ -432,167 +447,23 @@ margin-top: 0; text-align: center; ">Where Can We Take You Today? -
- - - - - - - - -
- - - - - - @@ -600,97 +471,83 @@
- -
China Highlights tailor-makes China tours to help travelers discover - China - their way. We're a passionate team of one hundred avid travelers who love to share our - knowledge - of China with those looking for a more authentic travel experience, more - ...
- China Highlights International Travel Service Co., LTD
- Corporate Number: 914503003486045699 + +
+ + Rated 5 out of 5 | 98.8% Excellence
+ China Highlights International
Travel Service Co., LTD
- -
-
Featured on
- -
-
- - +
+
Featured on
+China Highlights was featured on these medias. +
+ +

Address: Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China

@@ -700,38 +557,7 @@ class="img-responsive bottomlogopc">© 1998-2024 China Highlights — Discovery Your Way! - +
- 1-to-1 Expert Planning -

1-to-1 Expert Planning

-

Your tour will be tailor-made by your personal travel advisor — a destination - expert. Every reply will be within 24 hours.

+
Save Your Time
+ +

Save Your Time

+
    +
  • Less research, more enjoyment!
  • +
  • Real-time 1V1 expert planning.
  • +
  • Seamless coordination
  • +
+
- Personal Journeys -

Personal Journeys

-

Enjoy your personal local guide and ride. Explore destinations at your own pace. - Have unparalleled flexibility, which is impossible on a group tour.

+
Maximize Your Flexibility
+

Maximize Your Flexibility

+
    +
  • Your own personal guide and ride.
  • +
  • Explore at your own pace.
  • +
  • Unparalleled flexibility, impossible on a group tour.
  • +
- Authentic Experiences -

Authentic Experiences

-

Discover the hidden gems. Experience local culture by practicing it. Try new and - exciting activities, and unveil the stories behind the sights and people.

+
Ensure Your Satisfaction
+

Ensure Your Satisfaction

+
    +
  • Well-trained elite 20% of guides.
  • +
  • 20% vacancy on vehicles.
  • +
  • 24/7 emergency support.
  • +
- Well-Selected Local Guides -

Well-Selected Local Guides

-

Knowledgeable, enthusiastic, and attentive — your personal local guides will - share interesting stories, insider information, and even create unexpected - highlights!

+
Live Your China Story
+

Live Your China Story

+
    +
  • Authentic local culture and lifestyles.
  • +
  • Understand the culture by living it.
  • +
  • Uncover fascinating histories and witness New China.
  • +
+