Merge branch 'master' of github.com:hainatravel/information-system

master
赵鹏 1 year ago
commit ba98a93f2a

@ -678,13 +678,7 @@ class Information extends CI_Controller
} }
} }
} }
//AMP更新和生成 end
//为新闻添加默认发布时间
$meta_news_createdate = get_meta($information->ic_id, 'meta_news_createdate');
if (empty ($meta_news_createdate)) {
add_meta($information->ic_id, 'meta_news_createdate', date('m/d/Y', time()));
}
//如果URL有修改也删除静态文件 //如果URL有修改也删除静态文件
if ($this->input->post('ic_url') != $information->ic_url) { if ($this->input->post('ic_url') != $information->ic_url) {
$this->update_cache($information->ic_url, true); $this->update_cache($information->ic_url, true);
@ -1045,6 +1039,7 @@ class Information extends CI_Controller
$data_H1 = array(); $data_H1 = array();
$data_H1['infocategory'] = $this->Information_model->get_detail_by_path($information->is_path, 1); //信息所属分类,获取信息顶级节点内容 $data_H1['infocategory'] = $this->Information_model->get_detail_by_path($information->is_path, 1); //信息所属分类,获取信息顶级节点内容
$data_H1['author'] = ''; //获取作者信息 $data_H1['author'] = ''; //获取作者信息
$data_H1['meta_news_createdate'] = get_meta($information->ic_id, 'meta_news_createdate');
$author = $this->Operator_model->get_author_nikename($information->ic_author); $author = $this->Operator_model->get_author_nikename($information->ic_author);
if (!empty ($author)) { if (!empty ($author)) {
$data_H1['author'] = $author->OPI_FirstName; $data_H1['author'] = $author->OPI_FirstName;
@ -1206,11 +1201,12 @@ class Information extends CI_Controller
//信息推荐 //信息推荐
$template_recommand = $recommand_information; //$this->recommand_information($information); 从外面传进来pc和移动只需要查一次减少数据库负担 $template_recommand = $recommand_information; //$this->recommand_information($information); 从外面传进来pc和移动只需要查一次减少数据库负担
$template = str_replace('<!--@ARTICLENEXT@-->', $this->load->view($template_path . '-next', array('recommands' => $template_recommand), true), $template); $template = str_replace('<!--@ARTICLENEXT@-->', $this->load->view($template_path . '-next', array('recommands' => $template_recommand), true), $template);
$meta_show_advertise = get_meta($information->ic_id, 'meta_show_advertise');
// //广告改叫tips防止被插件屏蔽 // //广告改叫tips防止被插件屏蔽
if (!empty ($template_recommand['Tips Right TOP'])) { if (!empty ($template_recommand['Tips Right TOP']) && $meta_show_advertise == 'yes') {
$template = str_replace('<!--@TIPS-RIGHT-TOP@-->', "<div class='right_brand_info'><aside>" . $template_recommand['Tips Right TOP']->it_content . "</aside></div>", $template); $template = str_replace('<!--@TIPS-RIGHT-TOP@-->', "<div class='right_brand_info'><aside>" . $template_recommand['Tips Right TOP']->it_content . "</aside></div>", $template);
} }
if (!empty ($template_recommand['Tips Right'])) { if (!empty ($template_recommand['Tips Right']) && $meta_show_advertise == 'yes') {
$template = str_replace('<!--@TIPS-RIGHT@-->', "<div class='right_tour'>" . $template_recommand['Tips Right']->it_content . "</div>", $template); $template = str_replace('<!--@TIPS-RIGHT@-->', "<div class='right_tour'>" . $template_recommand['Tips Right']->it_content . "</div>", $template);
} }
@ -1221,6 +1217,7 @@ class Information extends CI_Controller
$tips_right_a = []; $tips_right_a = [];
$tips_right_b = []; $tips_right_b = [];
$tips_right_c = []; $tips_right_c = [];
for ($i = 1; $i <= 12; $i++) { for ($i = 1; $i <= 12; $i++) {
$key = 'List Tips Right A_' . $i; $key = 'List Tips Right A_' . $i;
if (array_key_exists($key, $recommand_information) && $recommand_information[$key]) { if (array_key_exists($key, $recommand_information) && $recommand_information[$key]) {
@ -1249,8 +1246,9 @@ class Information extends CI_Controller
), ),
true true
); );
if($meta_show_advertise == 'yes'){
$template = str_replace('<!--@TIPS-RIGHT-LIST@-->', $tips_right_list_content, $template); $template = str_replace('<!--@TIPS-RIGHT-LIST@-->', $tips_right_list_content, $template);
}
} }
//文中的信息推荐 //文中的信息推荐
@ -1656,6 +1654,8 @@ class Information extends CI_Controller
public function make_www_cache_gh($device, $information, $recommand_information) public function make_www_cache_gh($device, $information, $recommand_information)
{ {
$data = array(); $data = array();
$meta_show_advertise = get_meta($information->ic_id, 'meta_show_advertise');
$data['meta_show_advertise'] = $meta_show_advertise;
switch ($device) { switch ($device) {
case 'mobile': case 'mobile':
//获取移动优先的模板,如果有的话 //获取移动优先的模板,如果有的话
@ -1671,7 +1671,7 @@ class Information extends CI_Controller
//获取PC的模板如果有的话 //获取PC的模板如果有的话
$template_path = 'mobile_first/' . $this->config->item('site_code'); $template_path = 'mobile_first/' . $this->config->item('site_code');
if (is_file(APPPATH . 'views/' . $template_path . '-pc' . EXT)) { if (is_file(APPPATH . 'views/' . $template_path . '-pc' . EXT)) {
$template = $this->load->view($template_path . '-pc', '', true); $template = $this->load->view($template_path . '-pc', $data, true);
$html_path_ext = '-pc.htm'; $html_path_ext = '-pc.htm';
} else { } else {
return false; return false;
@ -1723,6 +1723,7 @@ class Information extends CI_Controller
$data_H1 = array(); $data_H1 = array();
$data_H1['infocategory'] = $this->Information_model->get_detail_by_path($information->is_path, 1); //信息所属分类,获取信息顶级节点内容 $data_H1['infocategory'] = $this->Information_model->get_detail_by_path($information->is_path, 1); //信息所属分类,获取信息顶级节点内容
$data_H1['author'] = ''; //获取作者信息 $data_H1['author'] = ''; //获取作者信息
$data_H1['meta_news_createdate'] = get_meta($information->ic_id, 'meta_news_createdate');
$author = $this->Operator_model->get_author_nikename($information->ic_author); $author = $this->Operator_model->get_author_nikename($information->ic_author);
if (!empty ($author)) { if (!empty ($author)) {
@ -1771,7 +1772,7 @@ class Information extends CI_Controller
if (!empty ($template_recommand['Tips Right TOP'])) { if (!empty ($template_recommand['Tips Right TOP'])) {
// $template = str_replace('<!--@TIPS-RIGHT-TOP@-->', "<div class='right_brand_info'><aside>" . $template_recommand['Tips Right TOP']->it_content . "</aside></div>", $template); // $template = str_replace('<!--@TIPS-RIGHT-TOP@-->', "<div class='right_brand_info'><aside>" . $template_recommand['Tips Right TOP']->it_content . "</aside></div>", $template);
} }
if (!empty ($template_recommand['Tips Right'])) { if (!empty ($template_recommand['Tips Right']) && $meta_show_advertise == 'yes') {
$template = str_replace('<!--@TIPS-RIGHT@-->', "<div class='right_tour'><div class='ah_inforight'>" . $template_recommand['Tips Right']->it_content . "</div></div>", $template); $template = str_replace('<!--@TIPS-RIGHT@-->', "<div class='right_tour'><div class='ah_inforight'>" . $template_recommand['Tips Right']->it_content . "</div></div>", $template);
} }
// 右侧列表广告 // 右侧列表广告
@ -1806,8 +1807,9 @@ class Information extends CI_Controller
), ),
true true
); );
if($meta_show_advertise == 'yes'){
$template = str_replace('<!--@TIPS-RIGHT-LIST@-->', $tips_right_list_content, $template); $template = str_replace('<!--@TIPS-RIGHT-LIST@-->', $tips_right_list_content, $template);
}
//文中的信息推荐 //文中的信息推荐
if (strpos($information->ic_content, '<!--@Content-Recommends-Article@-->') !== false) { if (strpos($information->ic_content, '<!--@Content-Recommends-Article@-->') !== false) {
// $information->ic_content = str_replace('<!--@Content-Recommends-Article@-->', $this->load->view($template_path . '-recommends-article', array('recommands' => $template_recommand), TRUE), $information->ic_content); // $information->ic_content = str_replace('<!--@Content-Recommends-Article@-->', $this->load->view($template_path . '-recommends-article', array('recommands' => $template_recommand), TRUE), $information->ic_content);
@ -2018,6 +2020,8 @@ class Information extends CI_Controller
$data = array(); $data = array();
$data['information'] = $information; $data['information'] = $information;
$recommand_template = ''; $recommand_template = '';
$meta_show_advertise = get_meta($information->ic_id, 'meta_show_advertise');
$data['meta_show_advertise'] = $meta_show_advertise;
switch ($device) { switch ($device) {
case 'mobile': case 'mobile':
//获取移动优先的模板,如果有的话 //获取移动优先的模板,如果有的话
@ -2034,7 +2038,7 @@ class Information extends CI_Controller
//获取PC的模板如果有的话 //获取PC的模板如果有的话
$template_path = 'mobile_first/' . $this->config->item('site_code'); $template_path = 'mobile_first/' . $this->config->item('site_code');
if (is_file(APPPATH . 'views/' . $template_path . '-pc' . EXT)) { if (is_file(APPPATH . 'views/' . $template_path . '-pc' . EXT)) {
$template = $this->load->view($template_path . '-pc', '', true); $template = $this->load->view($template_path . '-pc', $data, true);
$html_path_ext = '-pc.htm'; $html_path_ext = '-pc.htm';
} else { } else {
return false; return false;
@ -2078,6 +2082,7 @@ class Information extends CI_Controller
$breadcrumb_data = $this->Information_model->get_breadcrumb_data($information->is_id, $information->is_path, $group_map); $breadcrumb_data = $this->Information_model->get_breadcrumb_data($information->is_id, $information->is_path, $group_map);
$ads_by_google = !empty (get_meta($information->ic_id, 'meta_google_ad_article')); $ads_by_google = !empty (get_meta($information->ic_id, 'meta_google_ad_article'));
$data['meta_news_createdate'] = get_meta($information->ic_id, 'meta_news_createdate');
$data['ads_by_google'] = $ads_by_google; $data['ads_by_google'] = $ads_by_google;
$data['author'] = ''; //获取作者信息 $data['author'] = ''; //获取作者信息
$author = $this->Operator_model->get_author_nikename($information->ic_author); $author = $this->Operator_model->get_author_nikename($information->ic_author);
@ -2115,13 +2120,14 @@ class Information extends CI_Controller
$template_recommand = $recommand_information; $template_recommand = $recommand_information;
$template = str_replace('<!--@ARTICLENEXT@-->', $this->load->view($recommand_template, array('recommands' => $template_recommand), true), $template); $template = str_replace('<!--@ARTICLENEXT@-->', $this->load->view($recommand_template, array('recommands' => $template_recommand), true), $template);
//广告改叫tips防止被插件屏蔽 //广告改叫tips防止被插件屏蔽
if (!empty ($template_recommand['Tips Right'])) { if (!empty ($template_recommand['Tips Right']) && $meta_show_advertise == 'yes') {
$template = str_replace('<!--@TIPS-RIGHT@-->', "<div class='right_tour'><div class='ah_inforight'>" . $template_recommand['Tips Right']->it_content . "</div></div>", $template); $template = str_replace('<!--@TIPS-RIGHT@-->', "<div class='right_tour'><div class='ah_inforight'>" . $template_recommand['Tips Right']->it_content . "</div></div>", $template);
} }
// 右侧列表广告 // 右侧列表广告
$tips_right_a = []; $tips_right_a = [];
$tips_right_b = []; $tips_right_b = [];
$tips_right_c = []; $tips_right_c = [];
for ($i = 1; $i <= 12; $i++) { for ($i = 1; $i <= 12; $i++) {
$key = 'List Tips Right A_' . $i; $key = 'List Tips Right A_' . $i;
if (array_key_exists($key, $recommand_information) && $recommand_information[$key]) { if (array_key_exists($key, $recommand_information) && $recommand_information[$key]) {
@ -2146,13 +2152,15 @@ class Information extends CI_Controller
array( array(
'tips_right_a' => $tips_right_a, 'tips_right_a' => $tips_right_a,
'tips_right_b' => $tips_right_b, 'tips_right_b' => $tips_right_b,
'tips_right_c' => $tips_right_c 'tips_right_c' => $tips_right_c,
), ),
true true
); );
$template = str_replace('<!--@TIPS-RIGHT-LIST@-->', $tips_right_list_content, $template); if($meta_show_advertise == 'yes'){
$template = str_replace('<!--@TIPS-RIGHT-LIST@-->', $tips_right_list_content, $template);
}
//文中的信息推荐 //文中的信息推荐
if (strpos($information->ic_content, '<!--@Content-Recommends-Article@-->') !== false) { if (strpos($information->ic_content, '<!--@Content-Recommends-Article@-->') !== false) {
$information->ic_content = str_replace('<!--@Content-Recommends-Article@-->', $this->load->view($template_path . '-recommends-article', array('recommands' => $template_recommand), true), $information->ic_content); $information->ic_content = str_replace('<!--@Content-Recommends-Article@-->', $this->load->view($template_path . '-recommends-article', array('recommands' => $template_recommand), true), $information->ic_content);

@ -399,7 +399,6 @@ select.gender_pick {border: 1px solid #d1d1d1;
information to book all your hotels, transportation, and activities. If the information you information to book all your hotels, transportation, and activities. If the information you
provide is incorrect, you would not be able to board your flight or trains, and therefore provide is incorrect, you would not be able to board your flight or trains, and therefore
reissuing of tickets would be at your expense!</p> reissuing of tickets would be at your expense!</p>
<div class="traveler_info"> <div class="traveler_info">
<h3 data-header>Primary contact</h3> <h3 data-header>Primary contact</h3>
<div class="selectionBlock"> <div class="selectionBlock">
@ -718,6 +717,8 @@ select.gender_pick {border: 1px solid #d1d1d1;
<p>Your flight information will be forwarded to your guide/driver for airport pick up and drop off. <p>Your flight information will be forwarded to your guide/driver for airport pick up and drop off.
Please ensure the details you provide are correct. You can skip this if your don't need airport Please ensure the details you provide are correct. You can skip this if your don't need airport
transfer service.</p> transfer service.</p>
<p>If you are not yet purchase your airline and insurance, please fill in the TBC in the link and provide those information to your consultant or keep update after you confirm them.</p>
<div class="selectionBlock" style="width: 100%;"> <div class="selectionBlock" style="width: 100%;">

@ -718,7 +718,8 @@ select.gender_pick {border: 1px solid #d1d1d1;
<h2>Your Flight Information</h2> <h2>Your Flight Information</h2>
<p>Your flight information will be forwarded to your guide/driver for airport pick up and drop off. <p>Your flight information will be forwarded to your guide/driver for airport pick up and drop off.
Please ensure the details you provide are correct. You can skip this if your don't need airport Please ensure the details you provide are correct. You can skip this if your don't need airport
transfer service.</p> transfer service.</p>
<p>If you are not yet purchase your airline and insurance, please fill in the TBC in the link and provide those information to your consultant or keep update after you confirm them.</p>
<div class="selectionBlock" style="width: 100%;"> <div class="selectionBlock" style="width: 100%;">

@ -720,6 +720,7 @@ select.gender_pick {border: 1px solid #d1d1d1;
<p>Your flight information will be forwarded to your guide/driver for airport pick up and drop off. <p>Your flight information will be forwarded to your guide/driver for airport pick up and drop off.
Please ensure the details you provide are correct. You can skip this if your don't need airport Please ensure the details you provide are correct. You can skip this if your don't need airport
transfer service.</p> transfer service.</p>
<p>If you are not yet purchase your airline and insurance, please fill in the TBC in the link and provide those information to your consultant or keep update after you confirm them.</p>
<div class="selectionBlock"> <div class="selectionBlock">

@ -1154,6 +1154,25 @@
placeholder="124343,8784," value="<?php echo get_meta($information->ic_id, 'meta_bread_info'); ?>" /> placeholder="124343,8784," value="<?php echo get_meta($information->ic_id, 'meta_bread_info'); ?>" />
</div> </div>
<div class="col-sm-4 meta_bread_info_box">
<label>是否展示右侧广告
<a href="javascript:void(0);"
onclick="meta('delete', '<?php echo $information->ic_id; ?>', 'meta_show_advertise', $('#meta_show_advertise').val())"><i
class="text-muted glyphicon glyphtext-muted glyphicon glyphicon-remove"></i></a>
<a href="javascript:void(0);"
onclick="meta('save', '<?php echo $information->ic_id; ?>', 'meta_show_advertise', $('#meta_show_advertise').val())"><i
class="text-muted glyphicon glyphtext-muted glyphicon glyphicon-hdd"></i></a>
<a href="javascript:void(0);" title="是否展示右侧广告"><i
class="text-muted glyphicon glyphtext-muted glyphicon glyphicon-question-sign"></i></a>
</label>
<select name="meta_show_advertise" id="meta_show_advertise" class="form-control">
<option value="yes">展示</option>
<option <?php echo get_meta($information->ic_id, 'meta_show_advertise') === 'no' ? 'selected' : false; ?> value='no'>不展示
</option>
</select>
</div>
</div> </div>

@ -1,8 +1,8 @@
<?php foreach ($feedback_list as $index => $feedback) {?> <?php foreach ($feedback_list as $index => $feedback) {?>
<div class="feedback_content" rel="nofollow"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>">
<p style="height: auto;"><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>

@ -1,12 +1,11 @@
<!-- Bangkok --> <!-- Bangkok -->
<h2 id="thailand">Thailand Travel Reviews</h2> <h2 id="thailand">Thailand Travel Reviews</h2>
<?php if (!empty($Bangkok)) {?> <?php if (!empty($Bangkok)) {?>
<?php foreach ($Bangkok as $index => $feedback) {?> <?php foreach ($Bangkok as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong> <strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p style="height: auto;"><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -21,7 +20,7 @@
<?php foreach ($Hanoi as $index => $feedback) {?> <?php foreach ($Hanoi as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong> <strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p style="height: auto;"><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -36,7 +35,7 @@
<?php foreach ($Siem_Reap as $index => $feedback) {?> <?php foreach ($Siem_Reap as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong> <strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p style="height: auto;"><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -51,7 +50,7 @@
<?php foreach ($Tokyo as $index => $feedback) {?> <?php foreach ($Tokyo as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong> <strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p style="height: auto;"><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -68,7 +67,7 @@
<?php foreach ($Yangon as $index => $feedback) {?> <?php foreach ($Yangon as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong> <strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p style="height: auto;"><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -83,7 +82,7 @@
<?php foreach ($Beijing as $index => $feedback) {?> <?php foreach ($Beijing as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong> <strong style="height: auto; margin-bottom: 15px;"><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p style="height: auto;"><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>

@ -1,37 +1,29 @@
<p style="text-align: center;margin-top: 80px;margin-bottom: 0;clear:both;">Discover real reviews of <a href="/about-us/highlights-travel-family">Highlights Travel Family</a>'s best-rated service across trusted platforms. </p> <p style="text-align: center;margin-top: 80px;margin-bottom: 0;clear:both;">Discover real reviews of <a href="/about-us/highlights-travel-family">Highlights Travel Family</a>'s best-rated service across trusted platforms. </p>
<div class="visible-xs" style="margin: 20px 20px 90px 20px; "> <div class="visible-xs" style="margin: 20px 20px 90px 20px; ">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="float: left; width: 150px; margin: 0 auto; <img class="img-responsive" height="69" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" style="float: left; width: 150px; margin: 0 auto; display: block;" width="175">
display: block;" width="175"> <img height="40" src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" style="width: 120px; height: auto; display: block; float: right;" width="211">
<img height="40" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 120px; height: auto; display: block;
float: right;" width="211">
</div> </div>
<div class="table-responsive" style="margin-bottom: 20px;" rel="nofollow"> <div class="table-responsive" style="margin-bottom: 20px;" rel="nofollow">
<table> <table style="width: max-content;">
<tbody> <tbody>
<tr> <tr>
<td class="hidden-xs"> <td class="hidden-xs feedback_logo">
<div class="feedback_logo"> <img class="img-responsive" height="69" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133"></div>
</td> </td>
<?php foreach ($feedback_list as $index => $feedback) {?> <?php foreach ($feedback_list as $index => $feedback) {?>
<td> <td class="tour_feedback feedback_content">
<div class="tour_feedback">
<div class="feedback_content">
<strong> <strong>
<?php echo $feedback['title'] ?> <?php echo $feedback['title'] ?>
</strong> </strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"> <div class="customer_name">
<?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?> <?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?>
</div> </div>
</div>
</div>
</td> </td>
<?php }?> <?php }?>
</tr> </tr>

@ -1,10 +1,10 @@
<div class="right_tour"> <div class="right_tour">
<div class="feedback_logo" style="width: auto; display: flex;"> <div class="feedback_logo" style="width: auto; display: flex;">
<img height="65" style="margin: 0px auto; " width="150" <img height="65" style="margin: 0px auto; " width="150"
src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" /> src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" />
<img alt="Tour Review" class="img-responsive" height="278" <img alt="Tour Review" class="img-responsive" height="278"
style="width: 140px; display: block; margin: 0 auto; " width="1133" style="width: 140px; display: block; margin: 0 auto; " width="1133"
src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" /> src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" />
</div> </div>
<p style="text-align: center; <p style="text-align: center;
margin-top: 10px; margin-top: 10px;
@ -15,7 +15,7 @@
<div class="tour_feedback" style="width: auto; height: auto;"> <div class="tour_feedback" style="width: auto; height: auto;">
<div class="feedback_content"> <div class="feedback_content">
<strong style="height: auto;"><?php echo $feedback['title'] ?></strong> <strong style="height: auto;"><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>"></p>
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">more</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">more</a>
<div class="customer_name"> <div class="customer_name">

@ -13,7 +13,7 @@
<tr> <tr>
<td class="hidden-xs"> <td class="hidden-xs">
<div class="feedback_logo"> <div class="feedback_logo">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133"></div> <img class="img-responsive" height="69" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133"></div>
</td> </td>
<?php foreach ($feedback_list as $index => $feedback) {?> <?php foreach ($feedback_list as $index => $feedback) {?>
<td> <td>
@ -22,7 +22,7 @@
<strong> <strong>
<?php echo $feedback['title'] ?> <?php echo $feedback['title'] ?>
</strong> </strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>"></p>
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>

@ -1,16 +1,15 @@
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="float: left; width: 150px; margin: 0 auto; <img class="img-responsive" height="69" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" style="float: left; width: 150px; margin: 0 auto;
display: block;" width="175"> display: block;" width="175">
<img height="40" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 120px; height: auto; display: block; <img height="40" src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" style="width: 120px; height: auto; display: block;
float: right;" width="211"> float: right;" width="211">
<?php foreach ($feedback_list as $index => $feedback) {?> <?php foreach ($feedback_list as $index => $feedback) {?>
<div class="tour_feedback_right"> <div class="tour_feedback_right">
<div class="feedback_content_right"> <div class="feedback_content_right">
<strong> <strong>
<?php echo $feedback['title'] ?> <?php echo $feedback['title'] ?>
</strong> </strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>"></p>
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>

@ -12,9 +12,9 @@
Adults and kids (≥10 years old) Adults and kids (≥10 years old)
</p> </p>
<div class="numberBtn"> <div class="numberBtn">
<input class="minaddBtn reduceadult" id="minusAdult" type="button" value="-"> <input class="minaddBtn reduceadult" id="minusAdult" type="button" value="-" style="width: 50px !important;">
<input class="number" type="text" id="adultNumber" readonly value="1" name="adult"> <input class="number" type="text" id="adultNumber" readonly value="1" name="adult" style="width: 70px !important; text-align: center;">
<input class="minaddBtn addadult" id="plusAdult" type="button" value="+"> <input class="minaddBtn addadult" id="plusAdult" type="button" value="+" style="width: 50px !important;">
</div> </div>
</div> </div>
</div> </div>
@ -470,19 +470,4 @@
}); });
})(document); })(document);
</script> </script>
<style type="text/css">
.emailist{border:1px solid #bdbdbd; border-radius: 4px; background-color:#fff; color:#666; font-size:14px; list-style-type:0; padding:0; margin:0; overflow:hidden;}
.emailist li{ padding: 2px 11px;
cursor: pointer;
font-size: 18px;
text-shadow: none;
color: #000;
}
.emailist .on, .emailist li:hover{background-color:#eee;}
</style>
<script>
$("#email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>

@ -7,12 +7,14 @@
<a href="<?php echo $item['ic_url'] ?>" data-index="<?php echo $index ?>" data-is-id="<?php echo $item['is_id'] ?>"><?php echo $item['ic_url_title'] ?></a> <a href="<?php echo $item['ic_url'] ?>" data-index="<?php echo $index ?>" data-is-id="<?php echo $item['is_id'] ?>"><?php echo $item['ic_url_title'] ?></a>
<?php }?> <?php }?>
<div class="top_banner_tp"> <div class="top_banner_tp">
<img src="https://images.asiahighlights.com/allpicture/2024/01/be9791523feb438a80fe830927f9ade5_cut_200x200_241.png" alt="Asia Highlights TrustPilot rating" class="img-responsive hidden-xs"> <img src="https://images.asiahighlights.com/allpicture/2024/04/162495e225c5441eadcee119fa971806_cut_200x200_241.jpg" alt="Asia Highlights TrustPilot rating" class="img-responsive hidden-xs">
</div> </div>
</div> </div>
<div class="infotoptitle"> <div class="infotoptitle">
<h1 class="whitefont"><?php echo !empty($information->ic_title)?$information->ic_title:'H1 title asiahighlights mobile first template'; ?></h1> <h1 class="whitefont"><?php echo !empty($information->ic_title)?$information->ic_title:'H1 title asiahighlights mobile first template'; ?></h1>
<div class="authorupdate">By <strong><?php echo !empty($author)?$author:''; ?></strong>Updated <?php echo date("M. j, Y",strtotime($information->ic_datetime)); ?></div> <?php if (!empty($meta_news_createdate)) {?>
<div class="authorupdate">By <strong><?php echo !empty($author)?$author:''; ?></strong>Updated <?php echo date("M. j, Y",strtotime($meta_news_createdate)); ?></div>
<?php } ?>
</div> </div>
</div> </div>
</div> </div>

@ -811,6 +811,7 @@
}, duration); }, duration);
} }
</script> </script>
<script src="https://data.asiahighlights.com/min/?f=/js/jquery-1.8.2.min.js,/js/jquery.mailAutoComplete-4.0.min.js"></script>
<style> <style>
.date_select {width: 31% !important; margin-bottom: 10px;} .date_select {width: 31% !important; margin-bottom: 10px;}
.age_range { margin-top: 45px;} .age_range { margin-top: 45px;}

@ -535,7 +535,6 @@ margin-bottom: 10px;
<script src="https://data.asiahighlights.com/min/?f=/js/jquery-1.8.2.min.js,/js/flatpickr-4.6.1.min.js"></script> <script src="https://data.asiahighlights.com/min/?f=/js/jquery-1.8.2.min.js,/js/flatpickr-4.6.1.min.js"></script>
<script> <script>
var selectedExpectedDate = ''; var selectedExpectedDate = '';
document.addEventListener('DOMContentLoaded', () => { document.addEventListener('DOMContentLoaded', () => {
flatpickr("#starting_date", { flatpickr("#starting_date", {
@ -695,6 +694,7 @@ function validateQuickInquiryForm() {
}); });
}) })
</script> </script>
<style> <style>
.date_select {width: 31% !important;} .date_select {width: 31% !important;}
@media (max-width: 750px){ @media (max-width: 750px){
@ -702,19 +702,3 @@ function validateQuickInquiryForm() {
.date_select label {font-size:17px !important;} .date_select label {font-size:17px !important;}
} }
</style> </style>
<style type="text/css">
.emailist{border:1px solid #bdbdbd; border-radius: 4px; background-color:#fff; color:#666; font-size:14px; list-style-type:0; padding:0; margin:0; overflow:hidden;}
.emailist li{ padding: 2px 11px;
cursor: pointer;
font-size: 18px;
text-shadow: none;
color: #000;
}
.emailist .on, .emailist li:hover{background-color:#eee;}
</style>
<script>
$("#email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>

@ -469,20 +469,4 @@
}); });
})(document); })(document);
</script> </script>
<style type="text/css">
.emailist{border:1px solid #bdbdbd; border-radius: 4px; background-color:#fff; color:#666; font-size:14px; list-style-type:0; padding:0; margin:0; overflow:hidden;}
.emailist li{ padding: 2px 11px;
cursor: pointer;
font-size: 18px;
text-shadow: none;
color: #000;
}
.emailist .on, .emailist li:hover{background-color:#eee;}
</style>
<script>
$("#email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>

@ -573,20 +573,4 @@
} }
return result; return result;
} }
</script>
<style type="text/css">
.emailist{border:1px solid #bdbdbd; border-radius: 4px; background-color:#fff; color:#666; font-size:14px; list-style-type:0; padding:0; margin:0; overflow:hidden;}
.emailist li{ padding: 2px 11px;
cursor: pointer;
font-size: 18px;
text-shadow: none;
color: #000;
}
.emailist .on, .emailist li:hover{background-color:#eee;}
</style>
<script>
$("#email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script> </script>

@ -571,20 +571,4 @@
} }
return result; return result;
} }
</script>
<style type="text/css">
.emailist{border:1px solid #bdbdbd; border-radius: 4px; background-color:#fff; color:#666; font-size:14px; list-style-type:0; padding:0; margin:0; overflow:hidden;}
.emailist li{ padding: 2px 11px;
cursor: pointer;
font-size: 18px;
text-shadow: none;
color: #000;
}
.emailist .on, .emailist li:hover{background-color:#eee;}
</style>
<script>
$("#email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script> </script>

@ -22,7 +22,6 @@
<!--@MAIN-CSS@--> <!--@MAIN-CSS@-->
<!--@ADDON-CSS@--> <!--@ADDON-CSS@-->
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) { <script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l] = w[l] || [];
w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
@ -31,16 +30,6 @@
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f); f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-56CMWN3');</script> })(window, document, 'script', 'dataLayer', 'GTM-56CMWN3');</script>
<!-- End Google Tag Manager -->
<!-- Global site tag (gtag.js) - Google Ads: 996341496 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-996341496"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'AW-996341496');
</script>
</head> </head>
<body> <body>
@ -225,11 +214,9 @@
</div> </div>
</header> </header>
<div class="updated_news">How to Plan an Incredible Family Trip to Japan in 2024/2025. <a <div class="updated_news">How to Plan an Incredible Family Trip to Japan in 2024/2025. <a href="/japan/how-to-plan-a-family-trip-to-japan">Learn more.</a></div>
href="/japan/how-to-plan-a-family-trip-to-japan">Learn more.</a></div>
<script
src="https://data.asiahighlights.com/min/?f=/js/jquery-1.8.2.min.js,/js/jquery.mailAutoComplete-4.0.min.js"></script>
<!--PC头部 结束--> <!--PC头部 结束-->
<!--@HEAD_1@--> <!--@HEAD_1@-->
@ -240,6 +227,7 @@
<div class="pc_content"> <div class="pc_content">
<!--@CUSTOM-CONENT@--> <!--@CUSTOM-CONENT@-->
</div> </div>
<?php if ($meta_show_advertise == 'yes') {?>
<div class="right_brand_info"> <div class="right_brand_info">
<h3>Why Asia Highlights (10,000+ reviews & 98.8% 5-star rating)</h3> <h3>Why Asia Highlights (10,000+ reviews & 98.8% 5-star rating)</h3>
@ -255,6 +243,7 @@
<li>Celebrate milestones with style!</li> <li>Celebrate milestones with style!</li>
</ul> </ul>
</div> </div>
<?php } ?>
<!--@TIPS-RIGHT@--> <!--@TIPS-RIGHT@-->
<!--@TIPS-RIGHT-LIST@--> <!--@TIPS-RIGHT-LIST@-->
<div class="info_tm_button"><a href="/forms/tailormade?product_code=" id="create_my_trip_button_pc">Create <div class="info_tm_button"><a href="/forms/tailormade?product_code=" id="create_my_trip_button_pc">Create
@ -276,9 +265,9 @@
<span class="infotailormade"><a href="/forms/tailormade?product_code=">Create My Trip</a></span> <span class="infotailormade"><a href="/forms/tailormade?product_code=">Create My Trip</a></span>
</span> </span>
<div class="tp_banner">4.9 Excellent<img src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png" <div class="tp_banner">4.9 Excellent<img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"
class="img-responsive" alt="TrustPilot rating" width="100px"> class="img-responsive" alt="TrustPilot rating" width="100px">
<img src="https://data.asiahighlights.com/image/about/logo-white.png" class="img-responsive" <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.asiahighlights.com/image/about/logo-white.png" class="img-responsive"
alt="TrustPilot Logo" width="73px"> alt="TrustPilot Logo" width="73px">
</div> </div>
</div> </div>
@ -301,14 +290,14 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img <div class="whyus_image"> <img
src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div> alt="Customize Your Tour" class="img-responsive" width="100" height="100"/></div>
<h3>Save Your Time</h3> <h3>Customize Your Tour</h3>
<ul class="infolist"> <ul class="infolist">
<li>Less research, more enjoyment!</li> <li>Travel Advisors Rooted in Asia</li>
<li> Real-time 1V1 expert planning.</li> <li>Instant Response, No More Waits! </li>
<li> Seamless coordination</li> <li>Direct Connections, Supreme Values</li>
</ul> </ul>
</div> </div>
@ -316,8 +305,8 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img <div class="whyus_image"> <img
src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png" src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" /></div> alt="Maximize Your Flexibility" class="img-responsive" width="100" height="100"/></div>
<h3>Maximize Your Flexibility</h3> <h3>Maximize Your Flexibility</h3>
<ul class="infolist"> <ul class="infolist">
<li>Your own personal guide and ride. </li> <li>Your own personal guide and ride. </li>
@ -330,12 +319,12 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"><img <div class="whyus_image"><img
src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png" src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfactory" class="img-responsive" /></div> alt="Ensure Your Satisfactory" class="img-responsive" width="100" height="100"/></div>
<h3>Ensure Your Satisfactory</h3> <h3>Ensure Your Satisfactory</h3>
<ul class="infolist"> <ul class="infolist">
<li>Well-trained elite 20% of guides.</li> <li>The Top 20% nationwide guides at your service.</li>
<li> 20% vacancy on vehicles.</li> <li>20% more space on your group's transportation.</li>
<li> 24/7 emergency support.</li> <li> 24/7 emergency support.</li>
</ul> </ul>
</div> </div>
@ -343,7 +332,7 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img <div class="whyus_image"> <img
src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png" src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Celebrate Your Journey" class="img-responsive" width="100" height="100" /> alt="Celebrate Your Journey" class="img-responsive" width="100" height="100" />
</div> </div>
<h3>Celebrate Your Journey</h3> <h3>Celebrate Your Journey</h3>
@ -387,11 +376,11 @@
<div class="list_content"> <div class="list_content">
<div class="aboutusleft"> <div class="aboutusleft">
<div class="bottomaboutus"> <div class="bottomaboutus">
<img src="https://images.asiahighlights.com/allpicture/2024/03/1437fad7aabf4cf297ae5cefce15b241_cut_1191x842_241.png" <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/03/1437fad7aabf4cf297ae5cefce15b241_cut_1191x842_241.png"
width="170" height="121" width="170" height="121"
style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;"> style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;">
<div class="aboutusinfo"> <div class="aboutusinfo">
<img src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png" <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"
style="display: block; margin-bottom: 10px;" width="104" height="20"> style="display: block; margin-bottom: 10px;" width="104" height="20">
Rated 4.9 out of 5 | 98.8% Excellence<br> Rated 4.9 out of 5 | 98.8% Excellence<br>
China Highlights International<br> Travel Service Co., LTD China Highlights International<br> Travel Service Co., LTD
@ -402,13 +391,13 @@
<div class="aboutusright company"> <div class="aboutusright company">
<div class="bottompctitle">Company</div> <div class="bottompctitle">Company</div>
<ul> <ul>
<li><a href="/about-us" >About us</a></li> <li><a href="/about-us">About us</a></li>
<li><a href="/travel-agents">Travel Agents</a></li> <li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li> <li><a href="/reviews">Reviews</a></li>
<li><a href="/contact-us" >Contact us</a></li> <li><a href="/contact-us">Contact us</a></li>
<li><a href="/about-us/history">History</a></li> <li><a href="/about-us/loyalty-program">Loyalty Program</a></li>
<li><a href="/about-us/our-differences" >Our Differences</a></li> <li><a href="/about-us/our-differences" >Our Differences</a></li>
<li><a href="/privacy" >Privacy Policy</a></li> <li><a href="/privacy">Privacy Policy</a></li>
<li><a href="/terms-of-use">Terms</a></li> <li><a href="/terms-of-use">Terms</a></li>
</ul> </ul>
</div> </div>
@ -460,7 +449,7 @@
</div> </div>
<div class="feature"> <div class="feature">
<div class="bottompctitle">Featured on</div> <div class="bottompctitle">Featured on</div>
<img src="https://images.chinahighlights.com/allpicture/2024/02/c858c422f4aa4702ba62eeeccc29156f_cut_1135x66_241.jpg" <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.chinahighlights.com/allpicture/2024/02/c858c422f4aa4702ba62eeeccc29156f_cut_1135x66_241.jpg"
alt="China Highlights was featured on these medias." width="1135" height="66"> alt="China Highlights was featured on these medias." width="1135" height="66">
</div> </div>

@ -522,14 +522,7 @@
Now</button> <input name="product_code" type="hidden" value="<?php echo $meta_product_code; ?>" /> Now</button> <input name="product_code" type="hidden" value="<?php echo $meta_product_code; ?>" />
<input name="itinerary" type="hidden" value="<?php echo $information->ic_title; ?>" /> <input name="itinerary" type="hidden" value="<?php echo $information->ic_title; ?>" />
</form> </form>
<!--
<h3 style="text-align: center; font-size: 20px; line-height: 22px;">For a quick conversation, simply reach us via WhatsApp:</h3>
<div class="contactwechat"><img alt="asia highlights' wechat code" height="100px" src="https://data.asiahighlights.com/image/about/asia-highlights-whatsapp-code.jpg" width="100px" />
<div class="wechatinfo"><span class="wechatred">+8615807734776</span><br />
Email: <span class="wechatred">contact@asiahighlights.com</span></div>
</div>
-->
</div> </div>
</div> </div>
</div> </div>
@ -750,6 +743,7 @@ function validateQuickInquiryForm() {
}); });
}) })
</script> </script>
<style> <style>
.date_select {width: 31% !important;} .date_select {width: 31% !important;}
@media (max-width: 750px){ @media (max-width: 750px){

@ -18,7 +18,6 @@
<link rel="dns-prefetch" href="https://www.googletagmanager.com"> <link rel="dns-prefetch" href="https://www.googletagmanager.com">
<!--@MAIN-CSS@--> <!--@MAIN-CSS@-->
<!--@ADDON-CSS@--> <!--@ADDON-CSS@-->
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) { <script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l] = w[l] || [];
w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
@ -27,16 +26,6 @@
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f); f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-56CMWN3');</script> })(window, document, 'script', 'dataLayer', 'GTM-56CMWN3');</script>
<!-- End Google Tag Manager -->
<!-- Global site tag (gtag.js) - Google Ads: 996341496 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-996341496"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'AW-996341496');
</script>
</head> </head>
<body> <body>
@ -133,10 +122,8 @@
id="china_reviews_mobile">China Travel Reviews</a></li> id="china_reviews_mobile">China Travel Reviews</a></li>
</ul> </ul>
</div> </div>
</nav> </nav>
<script src="https://data.asiahighlights.com/min/?f=/js/jquery-1.8.2.min.js,/js/jquery.mailAutoComplete-4.0.min.js"></script>
<!--移动头部 结束--> <!--移动头部 结束-->
@ -166,9 +153,9 @@
from our travel advisors. from our travel advisors.
<span class="infotailormade"><a href="/forms/tailormade?product_code=">Create My Trip</a></span> <span class="infotailormade"><a href="/forms/tailormade?product_code=">Create My Trip</a></span>
</span> </span>
<div class="tp_banner">4.9 Excellent<img src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png" <div class="tp_banner">4.9 Excellent<img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"
class="img-responsive" alt="TrustPilot rating" width="100px"> class="img-responsive" alt="TrustPilot rating" width="100px">
<img src="https://data.asiahighlights.com/image/about/logo-white.png" class="img-responsive" <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.asiahighlights.com/image/about/logo-white.png" class="img-responsive"
alt="TrustPilot Logo" width="73px"> alt="TrustPilot Logo" width="73px">
</div> </div>
</div> </div>
@ -189,22 +176,22 @@
<tr> <tr>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div> alt="Customize Your Tour" class="img-responsive" width="100" height="100"/></div>
<h3>Save Your Time</h3> <h3>Customize Your Tour</h3>
<ul class="infolist"> <ul class="infolist">
<li>Less research, more enjoyment!</li> <li>Travel Advisors Rooted in Asia</li>
<li> Real-time 1V1 expert planning.</li> <li>Instant Response, No More Waits! </li>
<li> Seamless coordination</li> <li>Direct Connections, Supreme Values</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" /></div> alt="Maximize Your Flexibility" class="img-responsive" width="100" height="100"/></div>
<h3>Maximize Your Flexibility</h3> <h3>Maximize Your Flexibility</h3>
<ul class="infolist"> <ul class="infolist">
<li>Your own personal guide and ride. </li> <li>Your own personal guide and ride. </li>
@ -216,19 +203,19 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png" <div class="whyus_image"><img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfactory" class="img-responsive" /></div> alt="Ensure Your Satisfactory" class="img-responsive" width="100" height="100"/></div>
<h3>Ensure Your Satisfactory</h3> <h3>Ensure Your Satisfactory</h3>
<ul class="infolist"> <ul class="infolist">
<li>Well-trained elite 20% of guides.</li> <li>The Top 20% nationwide guides at your service.</li>
<li> 20% vacancy on vehicles.</li> <li>20% more space on your group's transportation.</li>
<li> 24/7 emergency support.</li> <li> 24/7 emergency support.</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Celebrate Your Journey" class="img-responsive" width="100" alt="Celebrate Your Journey" class="img-responsive" width="100"
height="100" /></div> height="100" /></div>
<h3>Celebrate Your Journey</h3> <h3>Celebrate Your Journey</h3>
@ -273,7 +260,7 @@
<div class="infobottom"> <div class="infobottom">
<div class="bottomlogoinfo"> <div class="bottomlogoinfo">
<img src="https://images.asiahighlights.com/allpicture/2024/03/1437fad7aabf4cf297ae5cefce15b241_cut_1191x842_241.png" class="img-responsive" style="width: 150px; margin: 0 auto;"> <img src="https://data.asiahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/03/1437fad7aabf4cf297ae5cefce15b241_cut_1191x842_241.png" class="img-responsive" style="width: 150px; margin: 0 auto;">
<img src="https://data.asiahighlights.com/grey.gif" <img src="https://data.asiahighlights.com/grey.gif"
originalsrc="https://data.asiahighlights.com/pic/trustpilot-new-icon.png" loader="lazy" originalsrc="https://data.asiahighlights.com/pic/trustpilot-new-icon.png" loader="lazy"
class="bottomlogocenter img-responsive" style="width: 160px; margin-top: 15px;"> class="bottomlogocenter img-responsive" style="width: 160px; margin-top: 15px;">
@ -319,7 +306,7 @@
<li><a href="/travel-agents">Travel Agents</a></li> <li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li> <li><a href="/reviews">Reviews</a></li>
<li><a href="/contact-us" >Contact us</a></li> <li><a href="/contact-us" >Contact us</a></li>
<li><a href="/about-us/history">History</a></li> <li><a href="/about-us/loyalty-program">Loyalty Program</a></li>
<li><a href="/about-us/our-differences" >Our Differences</a></li> <li><a href="/about-us/our-differences" >Our Differences</a></li>
<li><a href="/privacy" >Privacy Policy</a></li> <li><a href="/privacy" >Privacy Policy</a></li>
<li><a href="/terms-of-use">Terms</a></li> <li><a href="/terms-of-use">Terms</a></li>

@ -5,18 +5,17 @@ padding-bottom: 0;" class="city_feedback">Discover real reviews of <a href="/abo
<div style="display: inline-block;" class="city_feedback_tag"> <div style="display: inline-block;" class="city_feedback_tag">
<div style="margin: 0 10px; float: left;"> <img alt="" class="img-responsive" style="width: 150px;" <div style="margin: 0 10px; float: left;"> <img alt="" class="img-responsive" style="width: 150px;"
src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg">
>
</div> </div>
<div style="margin: 0 10px; float: left;"> <div style="margin: 0 10px; float: left;">
<img alt="Tour Review" class="img-responsive" <img alt="Tour Review" class="img-responsive"
src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" width="150px"> src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" width="150px">
</div> </div>
</div> </div>
<?php foreach ($feedback_list as $index => $feedback) {?> <?php foreach ($feedback_list as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong style="height: auto;"><?php echo $feedback['title'] ?></strong> <strong style="height: auto;"><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p style="height:auto;"><?php echo $feedback['content'] ?></p> <p style="height:auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>

@ -6,7 +6,7 @@
<?php foreach ($Beijing as $index => $feedback) {?> <?php foreach ($Beijing as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -21,7 +21,7 @@
<?php foreach ($xian as $index => $feedback) {?> <?php foreach ($xian as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -36,7 +36,7 @@
<?php foreach ($Chengdu as $index => $feedback) {?> <?php foreach ($Chengdu as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -51,7 +51,7 @@
<?php foreach ($Guilin as $index => $feedback) {?> <?php foreach ($Guilin as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -66,7 +66,7 @@
<?php foreach ($Lhasa as $index => $feedback) {?> <?php foreach ($Lhasa as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -81,7 +81,7 @@
<?php foreach ($Suzhou as $index => $feedback) {?> <?php foreach ($Suzhou as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -96,7 +96,7 @@
<?php foreach ($Shanghai as $index => $feedback) {?> <?php foreach ($Shanghai as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -111,7 +111,7 @@
<?php foreach ($Zhangjiajie as $index => $feedback) {?> <?php foreach ($Zhangjiajie as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -126,7 +126,7 @@
<?php foreach ($Lijiang as $index => $feedback) {?> <?php foreach ($Lijiang as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -141,7 +141,7 @@
<?php foreach ($Dali as $index => $feedback) {?> <?php foreach ($Dali as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -156,7 +156,7 @@
<?php foreach ($Kunming as $index => $feedback) {?> <?php foreach ($Kunming as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -171,7 +171,7 @@
<?php foreach ($Huangshan as $index => $feedback) {?> <?php foreach ($Huangshan as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -186,7 +186,7 @@
<?php foreach ($Hangzhou as $index => $feedback) {?> <?php foreach ($Hangzhou as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>

@ -1,39 +1,32 @@
<p style="text-align: center;margin-top: 80px;margin-bottom: 0;padding-bottom: 0;">Discover real reviews of <a href="/aboutus/highlights-travel-family.htm">Highlights Travel Family</a>'s best-rated service across trusted platforms.</p> <p style="text-align: center;margin-top: 80px;margin-bottom: 0;padding-bottom: 0;">Discover real reviews of <a href="/aboutus/highlights-travel-family.htm">Highlights Travel Family</a>'s best-rated service across trusted platforms.</p>
<div class="visible-xs" style="margin: 20px 20px 90px 20px; "> <div class="visible-xs" style="margin: 20px 20px 110px 20px; ">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="float: left; width: 150px; margin: 0 auto; <img class="img-responsive" height="69" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" style="float: left; width: 150px; margin: 0 auto;
display: block;" width="175"> display: block;" width="175">
<img height="40" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 120px; height: auto; display: block; <img height="40" src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" style="width: 120px; height: auto; display: block;
float: right;" width="211"> float: right;" width="211">
</div> </div>
<div class="table-responsive" style="margin-bottom: 20px;" rel="nofollow"> <div class="table-responsive" style="margin-bottom: 20px;" rel="nofollow">
<table> <table style="width: max-content;">
<tbody> <tbody>
<tr> <tr>
<td class="hidden-xs"> <td class="hidden-xs feedback_logo">
<div class="feedback_logo" > <img class="img-responsive" height="69" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133"></div>
</td> </td>
<?php foreach ($feedback_list as $index => $feedback) {?> <?php foreach ($feedback_list as $index => $feedback) {?>
<td> <td class="tour_feedback feedback_content">
<div class="tour_feedback">
<div class="feedback_content">
<strong> <strong>
<?php echo $feedback['title'] ?> <?php echo $feedback['title'] ?>
</strong> </strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">more</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">more</a>
<div class="customer_name"> <div class="customer_name">
<?php echo $feedback['createdOn'] ?>, <?php echo $feedback['customer'] ?> <?php echo $feedback['createdOn'] ?>, <?php echo $feedback['customer'] ?>
</div> </div>
</div>
</div>
</td> </td>
<?php }?> <?php }?>
</tr> </tr>

@ -3,9 +3,9 @@
<div class="feedback_content_right" style="width: 100%; margin-bottom: 50px;"> <div class="feedback_content_right" style="width: 100%; margin-bottom: 50px;">
<div class="feedback_content" style="box-shadow: 0px 0px 8px 2px #d1d1d1;"> <div class="feedback_content" style="box-shadow: 0px 0px 8px 2px #d1d1d1;">
<div class="photoBlock300" style="width: auto;"><img alt="Trip Advisor travelers' choice 2022" src="https://data.chinahighlights.com/image/aboutus/china-highlights-ta-certificate-2022.jpg" width="128" height="150" class="img-responsive" ></div> <div class="photoBlock300" style="width: auto;"><img alt="Trip Advisor travelers' choice 2022" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" width="128" height="150" class="img-responsive" ></div>
<p><strong><?php echo $feedback_data['title'] ?></strong></p> <p><strong><?php echo $feedback_data['title'] ?></strong></p>
<img alt="" class="feedback-rate" src="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" width="104" height="20"><div class="review_date">reviewed <?php echo $feedback_data['createdOn'] ?>, <?php echo $feedback_data['customer'] ?></div> <img alt="" class="feedback-rate" src="https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg" width="104" height="20"><div class="review_date">reviewed <?php echo $feedback_data['createdOn'] ?>, <?php echo $feedback_data['customer'] ?></div>
<p><?php echo $feedback_data['content'] ?>&nbsp;<a href="<?php echo $feedback_data['url'] ?>" target="_blank" rel="nofollow">more</a></p> <p><?php echo $feedback_data['content'] ?>&nbsp;<a href="<?php echo $feedback_data['url'] ?>" target="_blank" rel="nofollow">more</a></p>
</div> </div>
</div> </div>

@ -10,7 +10,9 @@
</div> </div>
<h1><?php echo !empty($ic_title)?$ic_title:'H1 title Chinahighlights mobile first template'; ?></h1> <h1><?php echo !empty($ic_title)?$ic_title:'H1 title Chinahighlights mobile first template'; ?></h1>
<!--<p class="subheadline">to do</p> --> <!--<p class="subheadline">to do</p> -->
<div class="authorupdate">Written by <strong><?php echo !empty($author)?$author:''; ?></strong>Updated <?php echo date("M. j, Y",strtotime($ic_datetime)); ?></div> <?php if (!empty($meta_news_createdate)) {?>
<div class="authorupdate">Written by <strong><?php echo !empty($author)?$author:''; ?></strong>Updated <?php echo date("M. j, Y",strtotime($meta_news_createdate)); ?></div>
<?php } ?>
<?php if ($ads_by_google) { ?> <?php if ($ads_by_google) { ?>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4231674166786366" <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4231674166786366"
crossorigin="anonymous"></script> crossorigin="anonymous"></script>

@ -574,19 +574,4 @@ document.addEventListener('DOMContentLoaded', () => {
.date_select {width: 93% !important; margin-bottom: 0 !important;} .date_select {width: 93% !important; margin-bottom: 0 !important;}
.age_range { margin-top: 0;} .age_range { margin-top: 0;}
} }
</style> </style>
<style type="text/css">
.emailist{border:1px solid #bdbdbd; border-radius: 4px; background-color:#fff; color:#666; font-size:14px; list-style-type:0; padding:0; margin:0; overflow:hidden;}
.emailist li{ padding: 2px 11px;
cursor: pointer;
font-size: 18px;
text-shadow: none;
color: #000;
}
.emailist .on, .emailist li:hover{background-color:#eee;}
</style>
<script>
$("#email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>

@ -354,22 +354,22 @@
<tr> <tr>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div> alt="Customize Your Tour" class="img-responsive" width="100" height="100"/></div>
<h3>Save Your Time</h3> <h3>Customize Your Tour</h3>
<ul class="infolist"> <ul class="infolist">
<li>Less research, more enjoyment!</li> <li>Travel Advisors Rooted in China</li>
<li>Real-time 1V1 expert planning.</li> <li>Instant Response, No More Waits! </li>
<li>Seamless coordination</li> <li>Direct Connections, Supreme Values</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" /></div> alt="Maximize Your Flexibility" class="img-responsive" width="100" height="100"/></div>
<h3>Maximize Your Flexibility</h3> <h3>Maximize Your Flexibility</h3>
<ul class="infolist"> <ul class="infolist">
<li>Your own personal guide and ride. </li> <li>Your own personal guide and ride. </li>
@ -381,19 +381,19 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png" <div class="whyus_image"><img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfaction" class="img-responsive" /></div> alt="Ensure Your Satisfaction" class="img-responsive" width="100" height="100"/></div>
<h3>Ensure Your Satisfaction</h3> <h3>Ensure Your Satisfaction</h3>
<ul class="infolist"> <ul class="infolist">
<li> Well-trained elite 20% of guides.</li> <li>The Top 20% nationwide guides at your service.</li>
<li>20% vacancy on vehicles.</li> <li>20% more space on your group's transportation.</li>
<li>24/7 emergency support.</li> <li>24/7 emergency support.</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Live Your China Story" class="img-responsive" width="100" alt="Live Your China Story" class="img-responsive" width="100"
height="100" /></div> height="100" /></div>
<h3>Live Your China Story</h3> <h3>Live Your China Story</h3>
@ -435,11 +435,11 @@
<div class="list_content"> <div class="list_content">
<div class="aboutusleft"> <div class="aboutusleft">
<div class="bottomaboutus"> <div class="bottomaboutus">
<img src="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" width="170" <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" width="170"
height="121" height="121"
style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;" /> style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;" />
<div class="aboutusinfo"> <div class="aboutusinfo">
<img src="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" style="display: block; margin-bottom: 10px;"> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" style="display: block; margin-bottom: 10px;">
Rated 5 out of 5 | 98.8% Excellence<br> Rated 5 out of 5 | 98.8% Excellence<br>
China Highlights International<br> Travel Service Co., LTD China Highlights International<br> Travel Service Co., LTD
</div> </div>
@ -508,7 +508,7 @@
</div> </div>
<div class="feature"> <div class="feature">
<div class="bottompctitle">Featured on</div> <div class="bottompctitle">Featured on</div>
<img src="https://images.chinahighlights.com/allpicture/2024/02/c858c422f4aa4702ba62eeeccc29156f_cut_1135x66_241.jpg" alt="China Highlights was featured on these medias."> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.chinahighlights.com/allpicture/2024/02/c858c422f4aa4702ba62eeeccc29156f_cut_1135x66_241.jpg" alt="China Highlights was featured on these medias.">
</div> </div>
<p style="margin-top: 20px; padding-bottom: 0;"><strong>Address:</strong> Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China</p> <p style="margin-top: 20px; padding-bottom: 0;"><strong>Address:</strong> Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China</p>
@ -517,7 +517,7 @@
</div> </div>
<div class="bottomlogo"> <div class="bottomlogo">
<div class="list_content"> <div class="list_content">
<img src="https://data.chinahighlights.com/pic/guide/info-template-bottom-logo.jpg" width="114" height="71" <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/guide/info-template-bottom-logo.jpg" width="114" height="71"
class="img-responsive bottomlogopc"><span class="bottomcopyright">© 1998-2024 China Highlights — Discovery Your Way! </span> class="img-responsive bottomlogopc"><span class="bottomcopyright">© 1998-2024 China Highlights — Discovery Your Way! </span>
</div> </div>
</div> </div>
@ -538,8 +538,6 @@
})(window, document, 'header'); })(window, document, 'header');
</script> </script>
<!--@PRODUCT-JS@--> <!--@PRODUCT-JS@-->
<!--@ADDON-JS@--> <!--@ADDON-JS@-->
<script>eval(function (p, a, c, k, e, d) { <script>eval(function (p, a, c, k, e, d) {
@ -570,12 +568,6 @@
firstScript.parentNode.insertBefore(asyncScript, firstScript); firstScript.parentNode.insertBefore(asyncScript, firstScript);
}</script> }</script>
<!--@IN-ARTICLE-GOOGLE@--> <!--@IN-ARTICLE-GOOGLE@-->
<script>
$("#newsletter_email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>
<script type="application/ld+json"> <script type="application/ld+json">
{ {
"@context": "http://schema.org", "@context": "http://schema.org",

@ -376,22 +376,22 @@
<tr> <tr>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div> alt="Customize Your Tour" class="img-responsive" width="100" height="100"/></div>
<h3>Save Your Time</h3> <h3>Customize Your Tour</h3>
<ul class="infolist" style="margin-top: -70px !important;"> <ul class="infolist" style="margin-top: -70px !important;">
<li>Less research, more enjoyment!</li> <li>Travel Advisors Rooted in China</li>
<li>Real-time 1V1 expert planning.</li> <li>Instant Response, No More Waits! </li>
<li>Seamless coordination</li> <li>Direct Connections, Supreme Values</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" /></div> alt="Maximize Your Flexibility" class="img-responsive" width="100" height="100"/></div>
<h3>Maximize Your Flexibility</h3> <h3>Maximize Your Flexibility</h3>
<ul class="infolist" style="margin-top: -70px !important;"> <ul class="infolist" style="margin-top: -70px !important;">
<li>Your own personal guide and ride. </li> <li>Your own personal guide and ride. </li>
@ -403,19 +403,19 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png" <div class="whyus_image"><img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfaction" class="img-responsive" /></div> alt="Ensure Your Satisfaction" class="img-responsive" width="100" height="100"/></div>
<h3>Ensure Your Satisfaction</h3> <h3>Ensure Your Satisfaction</h3>
<ul class="infolist" style="margin-top: -70px !important;"> <ul class="infolist" style="margin-top: -70px !important;">
<li> Well-trained elite 20% of guides.</li> <li>The Top 20% nationwide guides at your service.</li>
<li>20% vacancy on vehicles.</li> <li>20% more space on your group's transportation.</li>
<li>24/7 emergency support.</li> <li>24/7 emergency support.</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png" <div class="whyus_image"> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Live Your China Story" class="img-responsive" width="100" alt="Live Your China Story" class="img-responsive" width="100"
height="100" /></div> height="100" /></div>
<h3>Live Your China Story</h3> <h3>Live Your China Story</h3>
@ -460,9 +460,9 @@
</div> </div>
<div class="infobottom"> <div class="infobottom">
<img src="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" alt="China Highlights Logo" <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" alt="China Highlights Logo"
width="152px" height="108" class="bottomlogocenter"> width="152px" height="108" class="bottomlogocenter">
<img src="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" style="display: block; margin: 10px auto;"> <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" style="display: block; margin: 10px auto;">
<div class="bottomlogoinfo">Rated 5 out of 5 | 98.8% Excellence<br> <div class="bottomlogoinfo">Rated 5 out of 5 | 98.8% Excellence<br>
China Highlights International<br> China Highlights International<br>
Travel Service Co., LTD Travel Service Co., LTD
@ -537,7 +537,7 @@ Travel Service Co., LTD
<div class="featureon"> <div class="featureon">
<span class="followtitle">Featured on</span> <span class="followtitle">Featured on</span>
<img src="https://data.chinahighlights.com/pic/guide/info-template-feature-on.png" alt="feature on" <img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/guide/info-template-feature-on.png" alt="feature on"
class="img-responsive" width="436px" height="250px"> class="img-responsive" width="436px" height="250px">
</div> </div>
@ -578,17 +578,10 @@ Travel Service Co., LTD
eval(function (p, a, c, k, e, d) { e = function (c) { return (c < a ? "" : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if (!''.replace(/^/, String)) { while (c--) d[e(c)] = k[c] || e(c); k = [function (e) { return d[e] }]; e = function () { return '\\w+' }; c = 1; }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p; }('8.R=10;(4(){3 h=b 26();4 11(X){8.R=X&&X.1I===\'1b\'?h.1V==1:10;1c()}h.1T=11;h.1Z=11;h.S=\'1M:1R/1x;1F,1Q/1P=\'})();5(!c.g){c.g=(4(){3 1u=y.M.1S;3 P=4(l){6 I l==="4"||1u.Q(l)==="[19 1L]"};3 1j=4(D){3 f=1O(D);5(1N(f)){6 0}5(f===0||!1Y(f)){6 f}6(f>0?1:-1)*o.1X(o.20(f))};3 1y=o.1U(2,1W)-1;3 1a=4(D){3 9=1j(D);6 o.1G(o.1H(9,0),1y)};6 4 g(J){3 C=E;3 U=y(J);5(J==p){F b H("c.g 1K 1J 1E-1D 19 - V p 1k B")}3 n=j.m>1?j[1]:2o B;3 T;5(I n!=="B"){5(!P(n)){F b H("c.g: 2q 2j, 2i 2k 2l 2m 2n a 4")}5(j.m>2){T=j[2]}}3 9=1a(U.m);3 A=P(C)?y(b C(9)):b c(9);3 k=0;3 d;1l(k<9){d=U[k];5(n){A[k]=I T==="B"?n(d,k):n.Q(T,d,k)}z{A[k]=d}k+=1}A.m=9;6 A}}())}5(!c.M.v){c.M.v=4(u){3 T,k;5(E==p){F b H("E 1i p 1k V 2p")}3 O=y(E);3 9=O.m>>>0;5(I u!=="4"){F b H(u+" 1i V a 4")}5(j.m>1){T=j[1]}k=0;1l(k<9){3 d;5(k 13 O){d=O[k];u.Q(T,d,k,O)}k++}}}4 1c(2h){3 14=4(i){i.W("1b",4(){i.r.q=1});5(8.R){i.1z("S",i.1B("1A").25(\'.28\',\'.1x\'))}z{i.1z("S",i.1B("1A"))}};3 1p=c.g(e.1q("h[1C=27]"));1p.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m";14(7)});3 w=1o();w();4 12(l,1s,1v){3 N=p,L=b 1r();6 4(){3 K=b 1r();22(N);5(K-L>=1v){l();L=K}z{N=21(l,1s)}}}4 1h(1n){3 16=1n.24();6{15:16.15+8.23-e.t.2e,1t:16.1t+8.2d-e.t.2g}}4 1o(){3 G=c.g(e.1q("h[1C=2f]"));G.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m"});6 4(){3 1g=8.2a;3 x=(e.t&&e.t.x)||(e.1d&&e.1d.x);G=G.29(4(7,Y){3 1f=1h(7).15;3 Z=1f<1g+x;5(Z){14(7)}6!Z})}}5(8.W){8.W("2c",12(w,s,s),10)}z{5(8.17){8.17("2b",12(w,s,s))}}};', 62, 151, '|||var|function|if|return|element|window|len||new|Array|kValue|document|number|from|img|target|arguments||fn|length|mapFn|Math|null|opacity|style|500|documentElement|callback|forEach|lazyloader|scrollTop|Object|else||undefined||value|this|throw|lazyImageList|TypeError|typeof|arrayLike|curTime|startTime|prototype|timeout||isCallable|call|isSupportWebp|src||items|not|addEventListener|event|index|hasVisible|false|getResult|throttle|in|loadImageByUrl|top|box|attachEvent|5s|object|toLength|load|createImageLoader|body|ease|offsetTop|seeHeight|getOffset|is|toInteger|or|while|out|el|createLazyloader|imageList|querySelectorAll|Date|delay|left|toStr|atleast|transition|webp|maxSafeInteger|setAttribute|originalsrc|getAttribute|loader|like|array|base64|min|max|type|an|requires|Function|data|isNaN|Number|vuUAAA|UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAwA0JaQAA3AA|image|toString|onerror|pow|width|53|floor|isFinite|onload|abs|setTimeout|clearTimeout|pageYOffset|getBoundingClientRect|replace|Image|ready|jpg|filter|innerHeight|onscroll|scroll|pageXOffset|clientTop|lazy|clientLeft|settings|the|provided|second|argument|must|be|void|defined|when'.split('|'), 0, {})) eval(function (p, a, c, k, e, d) { e = function (c) { return (c < a ? "" : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if (!''.replace(/^/, String)) { while (c--) d[e(c)] = k[c] || e(c); k = [function (e) { return d[e] }]; e = function () { return '\\w+' }; c = 1; }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p; }('8.R=10;(4(){3 h=b 26();4 11(X){8.R=X&&X.1I===\'1b\'?h.1V==1:10;1c()}h.1T=11;h.1Z=11;h.S=\'1M:1R/1x;1F,1Q/1P=\'})();5(!c.g){c.g=(4(){3 1u=y.M.1S;3 P=4(l){6 I l==="4"||1u.Q(l)==="[19 1L]"};3 1j=4(D){3 f=1O(D);5(1N(f)){6 0}5(f===0||!1Y(f)){6 f}6(f>0?1:-1)*o.1X(o.20(f))};3 1y=o.1U(2,1W)-1;3 1a=4(D){3 9=1j(D);6 o.1G(o.1H(9,0),1y)};6 4 g(J){3 C=E;3 U=y(J);5(J==p){F b H("c.g 1K 1J 1E-1D 19 - V p 1k B")}3 n=j.m>1?j[1]:2o B;3 T;5(I n!=="B"){5(!P(n)){F b H("c.g: 2q 2j, 2i 2k 2l 2m 2n a 4")}5(j.m>2){T=j[2]}}3 9=1a(U.m);3 A=P(C)?y(b C(9)):b c(9);3 k=0;3 d;1l(k<9){d=U[k];5(n){A[k]=I T==="B"?n(d,k):n.Q(T,d,k)}z{A[k]=d}k+=1}A.m=9;6 A}}())}5(!c.M.v){c.M.v=4(u){3 T,k;5(E==p){F b H("E 1i p 1k V 2p")}3 O=y(E);3 9=O.m>>>0;5(I u!=="4"){F b H(u+" 1i V a 4")}5(j.m>1){T=j[1]}k=0;1l(k<9){3 d;5(k 13 O){d=O[k];u.Q(T,d,k,O)}k++}}}4 1c(2h){3 14=4(i){i.W("1b",4(){i.r.q=1});5(8.R){i.1z("S",i.1B("1A").25(\'.28\',\'.1x\'))}z{i.1z("S",i.1B("1A"))}};3 1p=c.g(e.1q("h[1C=27]"));1p.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m";14(7)});3 w=1o();w();4 12(l,1s,1v){3 N=p,L=b 1r();6 4(){3 K=b 1r();22(N);5(K-L>=1v){l();L=K}z{N=21(l,1s)}}}4 1h(1n){3 16=1n.24();6{15:16.15+8.23-e.t.2e,1t:16.1t+8.2d-e.t.2g}}4 1o(){3 G=c.g(e.1q("h[1C=2f]"));G.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m"});6 4(){3 1g=8.2a;3 x=(e.t&&e.t.x)||(e.1d&&e.1d.x);G=G.29(4(7,Y){3 1f=1h(7).15;3 Z=1f<1g+x;5(Z){14(7)}6!Z})}}5(8.W){8.W("2c",12(w,s,s),10)}z{5(8.17){8.17("2b",12(w,s,s))}}};', 62, 151, '|||var|function|if|return|element|window|len||new|Array|kValue|document|number|from|img|target|arguments||fn|length|mapFn|Math|null|opacity|style|500|documentElement|callback|forEach|lazyloader|scrollTop|Object|else||undefined||value|this|throw|lazyImageList|TypeError|typeof|arrayLike|curTime|startTime|prototype|timeout||isCallable|call|isSupportWebp|src||items|not|addEventListener|event|index|hasVisible|false|getResult|throttle|in|loadImageByUrl|top|box|attachEvent|5s|object|toLength|load|createImageLoader|body|ease|offsetTop|seeHeight|getOffset|is|toInteger|or|while|out|el|createLazyloader|imageList|querySelectorAll|Date|delay|left|toStr|atleast|transition|webp|maxSafeInteger|setAttribute|originalsrc|getAttribute|loader|like|array|base64|min|max|type|an|requires|Function|data|isNaN|Number|vuUAAA|UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAwA0JaQAA3AA|image|toString|onerror|pow|width|53|floor|isFinite|onload|abs|setTimeout|clearTimeout|pageYOffset|getBoundingClientRect|replace|Image|ready|jpg|filter|innerHeight|onscroll|scroll|pageXOffset|clientTop|lazy|clientLeft|settings|the|provided|second|argument|must|be|void|defined|when'.split('|'), 0, {}))
function loadScriptByAsync(src) { var asyncScript = document.createElement("script"); asyncScript.async = true; asyncScript.crossorigin = "anonymous"; asyncScript.src = src; firstScript = document.getElementsByTagName("script")[0]; firstScript.parentNode.insertBefore(asyncScript, firstScript); } function loadScriptByAsync(src) { var asyncScript = document.createElement("script"); asyncScript.async = true; asyncScript.crossorigin = "anonymous"; asyncScript.src = src; firstScript = document.getElementsByTagName("script")[0]; firstScript.parentNode.insertBefore(asyncScript, firstScript); }
</script> </script>
<!--@PRODUCT-JS@--> <!--@PRODUCT-JS@-->
<!--@ADDON-JS@--> <!--@ADDON-JS@-->
<!--@IN-ARTICLE-GOOGLE@--> <!--@IN-ARTICLE-GOOGLE@-->
<script>
$("#newsletter_email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>
<script type="application/ld+json"> <script type="application/ld+json">
{ {
"@context": "http://schema.org", "@context": "http://schema.org",

@ -1,24 +1,17 @@
<p style="text-align: center;margin-top: 80px;">Discover real reviews of <a href="/about-us/highlights-travel-family">Highlights Travel Family</a>'s best-rated service across trusted platforms.</p> <p style="text-align: center;margin-top: 80px;">Discover real reviews of <a href="/about-us/highlights-travel-family">Highlights Travel Family</a>'s best-rated service across trusted platforms.</p>
<div class="listtour"> <div class="listtour">
<div style="margin: 0 10px;"> <img alt="" class="img-responsive" height="69" <div style="margin: 0 10px;"> <img alt="" class="img-responsive" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg">
src="https://data.chinahighlights.com/image/aboutus/awards/china-highlights-ta-2022-certificate.png" </div>
width="175"> <div style="margin: 0 10px;">
<img alt="" src="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" <img alt="Tour Review" class="img-responsive" src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg">
class="img-responsive" style="margin: 5px auto;"> </div>
</div>
<div style="margin: 0 10px;">
<img alt="Tour Review" class="img-responsive" height="278"
src="https://data.asiahighlights.com/image/about/logo-black.png" width="175px">
<img alt="" height="40" src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"
width="175px" class="img-responsive">
</div>
</div> </div>
<?php foreach ($feedback_list as $index => $feedback) {?> <?php foreach ($feedback_list as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>

@ -5,7 +5,7 @@
<?php foreach ($Bangkok as $index => $feedback) {?> <?php foreach ($Bangkok as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -20,7 +20,7 @@
<?php foreach ($Hanoi as $index => $feedback) {?> <?php foreach ($Hanoi as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -35,7 +35,7 @@
<?php foreach ($Siem_Reap as $index => $feedback) {?> <?php foreach ($Siem_Reap as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -50,7 +50,7 @@
<?php foreach ($Tokyo as $index => $feedback) {?> <?php foreach ($Tokyo as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -66,7 +66,7 @@
<?php foreach ($Yangon as $index => $feedback) {?> <?php foreach ($Yangon as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
@ -81,7 +81,7 @@
<?php foreach ($Beijing as $index => $feedback) {?> <?php foreach ($Beijing as $index => $feedback) {?>
<div class="feedback_content"> <div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong> <strong><?php echo $feedback['title'] ?></strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a> <a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div> <div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>

@ -1,27 +1,26 @@
<p style="text-align: center;margin-top: 80px;margin-bottom: 0;clear:both;">Discover real reviews of <a href="/about-us/highlights-travel-family">Highlights Travel Family</a>'s best-rated service across trusted platforms. </p> <p style="text-align: center;margin-top: 80px;margin-bottom: 0;clear:both;">Discover real reviews of <a href="/about-us/highlights-travel-family">Highlights Travel Family</a>'s best-rated service across trusted platforms. </p>
<div class="visible-xs" style="margin: 20px 20px 90px 20px; "> <div class="visible-xs" style="margin: 20px 20px 110px 20px; ">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="float: left; width: 150px; margin: 0 auto; <img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="float: left; width: 150px; margin: 0 auto;
display: block;" width="175"> display: block;" width="175">
<img height="40" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 120px; height: auto; display: block; <img height="40" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 120px; height: auto; display: block;
float: right;" width="211"> float: right;" width="211">
</div> </div>
<div class="table-responsive" style="margin-bottom: 20px; margin-top: 30px;"> <div class="table-responsive" style="margin-bottom: 20px; margin-top: 30px;">
<table> <table style="width: max-content;">
<tbody> <tbody>
<tr> <tr>
<td class="hidden-xs"> <td class="hidden-xs feedback_logo">
<div class="feedback_logo">
<img class="img-responsive" height="69" src="https://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://data.asiahighlights.com/image/forms/ah-ch-gh-tp-rating.png" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133"></div> <img class="img-responsive" height="69" src="https://images.asiahighlights.com/allpicture/2024/04/b3e0271ca0874b7cb0342ea6f2987723_cut_175x68_241.jpg" style="margin: 0px auto; " width="175"> <img alt="Tour Review" class="img-responsive" height="278" src="https://images.asiahighlights.com/allpicture/2024/04/0c58b3494bc04eeb9c5d3bdf55e55fad_cut_200x111_241.jpg" style="width: 170px; display: block; margin: 10px auto 0px; " width="1133">
</td> </td>
<?php foreach ($feedback_list as $index => $feedback) {?> <?php foreach ($feedback_list as $index => $feedback) {?>
<td> <td class="tour_feedback feedback_content">
<div class="tour_feedback">
<div class="feedback_content">
<strong> <strong>
<?php echo $feedback['title'] ?> <?php echo $feedback['title'] ?>
</strong> </strong>
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p> <img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.asiahighlights.com/allpicture/2024/04/8bebcc898ce54b64a46ced58580966d4_cut_104x19_241.jpg'; } ?>" style="height: 20px; width: auto;">
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
@ -29,9 +28,7 @@
<div class="customer_name"> <div class="customer_name">
<?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?> <?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?>
</div> </div>
</div>
</div>
</td> </td>
<?php }?> <?php }?>
</tr> </tr>

@ -8,9 +8,10 @@
<?php }?> <?php }?>
</div> </div>
<div class="topinfo"> <div class="topinfo">
<h1><?php echo !empty($ic_title)?$ic_title:'H1 title Chinahighlights mobile first template'; ?></h1> <h1><?php echo !empty($ic_title)?$ic_title:'H1 title Chinahighlights mobile first template'; ?></h1>
<div class="author_info">By <em><?php echo !empty($author)?$author:''; ?></em> | Updated <?php echo date("M. j, Y",time()); ?></div> <?php if (!empty($meta_news_createdate)) {?>
<div class="author_info">By <em><?php echo !empty($author)?$author:''; ?></em> | Updated <?php echo date("M. j, Y",strtotime($meta_news_createdate)); ?></div>
<?php } ?>
</div> </div>
</div> </div>
</div> </div>

@ -23,7 +23,6 @@
<link rel="dns-prefetch" href="https://www.googletagmanager.com"> <link rel="dns-prefetch" href="https://www.googletagmanager.com">
<!--@MAIN-CSS@--> <!--@MAIN-CSS@-->
<!--@ADDON-CSS@-->
<!-- Google Tag Manager --> <!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) { <script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({ w[l] = w[l] || []; w[l].push({
@ -33,22 +32,12 @@
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f); 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MNKHRM5');</script> })(window, document, 'script', 'dataLayer', 'GTM-MNKHRM5');</script>
<!-- Global site tag (gtag.js) - Google Ads: 996341496 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-996341496"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'AW-996341496');
</script>
<!-- Google tag (gtag.js) --> <!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5VT6KGSG67"></script> <script async src="https://www.googletagmanager.com/gtag/js?id=G-5VT6KGSG67"></script>
<script> <script>
window.dataLayer = window.dataLayer || []; window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); } function gtag() { dataLayer.push(arguments); }
gtag('js', new Date()); gtag('js', new Date());
gtag('config', 'G-5VT6KGSG67'); gtag('config', 'G-5VT6KGSG67');
</script> </script>
<script> <script>
@ -56,8 +45,6 @@
w.gh_template_name = w.gh_template_name || 'desktop'; w.gh_template_name = w.gh_template_name || 'desktop';
})(window); })(window);
</script> </script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4231674166786366"
crossorigin="anonymous"></script>
</head> </head>
<body> <body>
@ -203,6 +190,7 @@
<!--@CUSTOM-CONENT@--> <!--@CUSTOM-CONENT@-->
</section> </section>
</div> </div>
<?php if ($meta_show_advertise == 'yes') {?>
<div class="right_brand_info"> <div class="right_brand_info">
<h3>Why Global Highlights (10,000+ reviews & 98.8% 5-star rating)</h3> <h3>Why Global Highlights (10,000+ reviews & 98.8% 5-star rating)</h3>
@ -218,6 +206,7 @@
<li>Celebrate milestones with style!</li> <li>Celebrate milestones with style!</li>
</ul> </ul>
</div> </div>
<?php } ?>
<!--@TIPS-RIGHT@--> <!--@TIPS-RIGHT@-->
<!--@TIPS-RIGHT-LIST@--> <!--@TIPS-RIGHT-LIST@-->
<div class="info_tm_button"><a href="/forms/tailormade?product_code=" id="create_my_trip_button_pc">Create <div class="info_tm_button"><a href="/forms/tailormade?product_code=" id="create_my_trip_button_pc">Create
@ -251,23 +240,21 @@
<tr> <tr>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img <div class="whyus_image"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" alt="Customize Your Tour" class="img-responsive" width="100" height="100"></div>
alt="Save Your Time" class="img-responsive" width="100" height="100"></div>
<h3>Save Your Time</h3> <h3>Customize Your Tour</h3>
<ul class="infolist"> <ul class="infolist">
<li>Less research, more enjoyment!</li> <li>Personal Travel Advisors</li>
<li> Real-time 1V1 expert planning.</li> <li>Instant Response, No More Waits! </li>
<li> Seamless coordination</li> <li>Direct Connections, Supreme Values</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img <div class="whyus_image"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png"
alt="Maximize Your Flexibility" class="img-responsive" width="100" alt="Maximize Your Flexibility" class="img-responsive" width="100"
height="100"></div> height="100"></div>
<h3>Maximize Your Flexibility</h3> <h3>Maximize Your Flexibility</h3>
@ -281,22 +268,20 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"><img <div class="whyus_image"><img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png"
alt="Ensure Your Satisfactory" class="img-responsive" width="100" alt="Ensure Your Satisfactory" class="img-responsive" width="100"
height="100"></div> height="100"></div>
<h3>Ensure Your Satisfactory</h3> <h3>Ensure Your Satisfactory</h3>
<ul class="infolist"> <ul class="infolist">
<li>Well-trained elite 20% of guides.</li> <li>The Top 20% nationwide guides at your service.</li>
<li> 20% vacancy on vehicles.</li> <li>20% more space on your group's transportation.</li>
<li> 24/7 emergency support.</li> <li> 24/7 emergency support.</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img <div class="whyus_image"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
alt="Celebrate Your Journey" class="img-responsive" width="100" alt="Celebrate Your Journey" class="img-responsive" width="100"
height="100"></div> height="100"></div>
<h3>Celebrate Your Journey</h3> <h3>Celebrate Your Journey</h3>
@ -342,11 +327,11 @@
<div class="list_content"> <div class="list_content">
<div class="aboutusleft"> <div class="aboutusleft">
<div class="bottomaboutus"> <div class="bottomaboutus">
<img src="https://images.asiahighlights.com/allpicture/2024/03/4454a0450c304882891c35aea1b8baa9_cut_765x535_241.png" <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/03/4454a0450c304882891c35aea1b8baa9_cut_765x535_241.png"
width="170" height="121" width="170" height="121"
style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;"> style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;">
<div class="aboutusinfo"> <div class="aboutusinfo">
<img src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png" <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"
style="display: block; margin-bottom: 10px;" width="104" height="20"> style="display: block; margin-bottom: 10px;" width="104" height="20">
Rated 4.6 out of 5 | Excellence<br> Rated 4.6 out of 5 | Excellence<br>
China Highlights International<br> Travel Service Co., LTD China Highlights International<br> Travel Service Co., LTD
@ -360,7 +345,7 @@
<li><a href="/about">About us</a></li> <li><a href="/about">About us</a></li>
<li><a href="/travel-agents">Travel Agents</a></li> <li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li> <li><a href="/reviews">Reviews</a></li>
<li><a href="/company-history.htm">History</li> <li><a href="/loyalty-program">Loyalty Program</li>
<li><a href="/contactus">Contact us</a></li> <li><a href="/contactus">Contact us</a></li>
<li><a href="/privacy.htm">Privacy Policy</a></li> <li><a href="/privacy.htm">Privacy Policy</a></li>
<li><a href="/terms-of-use.htm">Terms</a></li> <li><a href="/terms-of-use.htm">Terms</a></li>
@ -414,7 +399,7 @@
</div> </div>
<div class="feature"> <div class="feature">
<div class="bottompctitle">Featured on</div> <div class="bottompctitle">Featured on</div>
<img src="https://images.chinahighlights.com/allpicture/2024/03/8e51ab3cb97a410996c70af3971f3b29_cut_1137x65_241.jpg" <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.chinahighlights.com/allpicture/2024/03/8e51ab3cb97a410996c70af3971f3b29_cut_1137x65_241.jpg"
alt="Global Highlights was featured on these medias." width="1135" height="66"> alt="Global Highlights was featured on these medias." width="1135" height="66">
</div> </div>
@ -424,7 +409,7 @@
</div> </div>
<div class="bottomlogo"> <div class="bottomlogo">
<div class="footerbox"> <div class="footerbox">
<img src="https://data.chinahighlights.com/image/aboutus/gh-bottom-logo.png" <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/image/aboutus/gh-bottom-logo.png"
class="img-responsive bottomlogopc"> class="img-responsive bottomlogopc">
<div class="bottomcopyright">© 2018-2024 Global Highlights — Discovery Your Way! </div> <div class="bottomcopyright">© 2018-2024 Global Highlights — Discovery Your Way! </div>
</div> </div>
@ -449,12 +434,9 @@
<!--PC底部 结束--> <!--PC底部 结束-->
<!--@PRODUCT-JS@--> <!--@PRODUCT-JS@-->
<!--@ADDON-JS@-->
<script>eval(function (p, a, c, k, e, d) { e = function (c) { return (c < a ? "" : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if (!''.replace(/^/, String)) { while (c--) d[e(c)] = k[c] || e(c); k = [function (e) { return d[e] }]; e = function () { return '\\w+' }; c = 1; }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p; }('8.R=10;(4(){3 h=b 26();4 11(X){8.R=X&&X.1I===\'1b\'?h.1V==1:10;1c()}h.1T=11;h.1Z=11;h.S=\'1M:1R/1x;1F,1Q/1P=\'})();5(!c.g){c.g=(4(){3 1u=y.M.1S;3 P=4(l){6 I l==="4"||1u.Q(l)==="[19 1L]"};3 1j=4(D){3 f=1O(D);5(1N(f)){6 0}5(f===0||!1Y(f)){6 f}6(f>0?1:-1)*o.1X(o.20(f))};3 1y=o.1U(2,1W)-1;3 1a=4(D){3 9=1j(D);6 o.1G(o.1H(9,0),1y)};6 4 g(J){3 C=E;3 U=y(J);5(J==p){F b H("c.g 1K 1J 1E-1D 19 - V p 1k B")}3 n=j.m>1?j[1]:2o B;3 T;5(I n!=="B"){5(!P(n)){F b H("c.g: 2q 2j, 2i 2k 2l 2m 2n a 4")}5(j.m>2){T=j[2]}}3 9=1a(U.m);3 A=P(C)?y(b C(9)):b c(9);3 k=0;3 d;1l(k<9){d=U[k];5(n){A[k]=I T==="B"?n(d,k):n.Q(T,d,k)}z{A[k]=d}k+=1}A.m=9;6 A}}())}5(!c.M.v){c.M.v=4(u){3 T,k;5(E==p){F b H("E 1i p 1k V 2p")}3 O=y(E);3 9=O.m>>>0;5(I u!=="4"){F b H(u+" 1i V a 4")}5(j.m>1){T=j[1]}k=0;1l(k<9){3 d;5(k 13 O){d=O[k];u.Q(T,d,k,O)}k++}}}4 1c(2h){3 14=4(i){i.W("1b",4(){i.r.q=1});5(8.R){i.1z("S",i.1B("1A").25(\'.28\',\'.1x\'))}z{i.1z("S",i.1B("1A"))}};3 1p=c.g(e.1q("h[1C=27]"));1p.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m";14(7)});3 w=1o();w();4 12(l,1s,1v){3 N=p,L=b 1r();6 4(){3 K=b 1r();22(N);5(K-L>=1v){l();L=K}z{N=21(l,1s)}}}4 1h(1n){3 16=1n.24();6{15:16.15+8.23-e.t.2e,1t:16.1t+8.2d-e.t.2g}}4 1o(){3 G=c.g(e.1q("h[1C=2f]"));G.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m"});6 4(){3 1g=8.2a;3 x=(e.t&&e.t.x)||(e.1d&&e.1d.x);G=G.29(4(7,Y){3 1f=1h(7).15;3 Z=1f<1g+x;5(Z){14(7)}6!Z})}}5(8.W){8.W("2c",12(w,s,s),10)}z{5(8.17){8.17("2b",12(w,s,s))}}};', 62, 151, '|||var|function|if|return|element|window|len||new|Array|kValue|document|number|from|img|target|arguments||fn|length|mapFn|Math|null|opacity|style|500|documentElement|callback|forEach|lazyloader|scrollTop|Object|else||undefined||value|this|throw|lazyImageList|TypeError|typeof|arrayLike|curTime|startTime|prototype|timeout||isCallable|call|isSupportWebp|src||items|not|addEventListener|event|index|hasVisible|false|getResult|throttle|in|loadImageByUrl|top|box|attachEvent|5s|object|toLength|load|createImageLoader|body|ease|offsetTop|seeHeight|getOffset|is|toInteger|or|while|out|el|createLazyloader|imageList|querySelectorAll|Date|delay|left|toStr|atleast|transition|webp|maxSafeInteger|setAttribute|originalsrc|getAttribute|loader|like|array|base64|min|max|type|an|requires|Function|data|isNaN|Number|vuUAAA|UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAwA0JaQAA3AA|image|toString|onerror|pow|width|53|floor|isFinite|onload|abs|setTimeout|clearTimeout|pageYOffset|getBoundingClientRect|replace|Image|ready|jpg|filter|innerHeight|onscroll|scroll|pageXOffset|clientTop|lazy|clientLeft|settings|the|provided|second|argument|must|be|void|defined|when'.split('|'), 0, {})) <script>eval(function (p, a, c, k, e, d) { e = function (c) { return (c < a ? "" : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if (!''.replace(/^/, String)) { while (c--) d[e(c)] = k[c] || e(c); k = [function (e) { return d[e] }]; e = function () { return '\\w+' }; c = 1; }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p; }('8.R=10;(4(){3 h=b 26();4 11(X){8.R=X&&X.1I===\'1b\'?h.1V==1:10;1c()}h.1T=11;h.1Z=11;h.S=\'1M:1R/1x;1F,1Q/1P=\'})();5(!c.g){c.g=(4(){3 1u=y.M.1S;3 P=4(l){6 I l==="4"||1u.Q(l)==="[19 1L]"};3 1j=4(D){3 f=1O(D);5(1N(f)){6 0}5(f===0||!1Y(f)){6 f}6(f>0?1:-1)*o.1X(o.20(f))};3 1y=o.1U(2,1W)-1;3 1a=4(D){3 9=1j(D);6 o.1G(o.1H(9,0),1y)};6 4 g(J){3 C=E;3 U=y(J);5(J==p){F b H("c.g 1K 1J 1E-1D 19 - V p 1k B")}3 n=j.m>1?j[1]:2o B;3 T;5(I n!=="B"){5(!P(n)){F b H("c.g: 2q 2j, 2i 2k 2l 2m 2n a 4")}5(j.m>2){T=j[2]}}3 9=1a(U.m);3 A=P(C)?y(b C(9)):b c(9);3 k=0;3 d;1l(k<9){d=U[k];5(n){A[k]=I T==="B"?n(d,k):n.Q(T,d,k)}z{A[k]=d}k+=1}A.m=9;6 A}}())}5(!c.M.v){c.M.v=4(u){3 T,k;5(E==p){F b H("E 1i p 1k V 2p")}3 O=y(E);3 9=O.m>>>0;5(I u!=="4"){F b H(u+" 1i V a 4")}5(j.m>1){T=j[1]}k=0;1l(k<9){3 d;5(k 13 O){d=O[k];u.Q(T,d,k,O)}k++}}}4 1c(2h){3 14=4(i){i.W("1b",4(){i.r.q=1});5(8.R){i.1z("S",i.1B("1A").25(\'.28\',\'.1x\'))}z{i.1z("S",i.1B("1A"))}};3 1p=c.g(e.1q("h[1C=27]"));1p.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m";14(7)});3 w=1o();w();4 12(l,1s,1v){3 N=p,L=b 1r();6 4(){3 K=b 1r();22(N);5(K-L>=1v){l();L=K}z{N=21(l,1s)}}}4 1h(1n){3 16=1n.24();6{15:16.15+8.23-e.t.2e,1t:16.1t+8.2d-e.t.2g}}4 1o(){3 G=c.g(e.1q("h[1C=2f]"));G.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m"});6 4(){3 1g=8.2a;3 x=(e.t&&e.t.x)||(e.1d&&e.1d.x);G=G.29(4(7,Y){3 1f=1h(7).15;3 Z=1f<1g+x;5(Z){14(7)}6!Z})}}5(8.W){8.W("2c",12(w,s,s),10)}z{5(8.17){8.17("2b",12(w,s,s))}}};', 62, 151, '|||var|function|if|return|element|window|len||new|Array|kValue|document|number|from|img|target|arguments||fn|length|mapFn|Math|null|opacity|style|500|documentElement|callback|forEach|lazyloader|scrollTop|Object|else||undefined||value|this|throw|lazyImageList|TypeError|typeof|arrayLike|curTime|startTime|prototype|timeout||isCallable|call|isSupportWebp|src||items|not|addEventListener|event|index|hasVisible|false|getResult|throttle|in|loadImageByUrl|top|box|attachEvent|5s|object|toLength|load|createImageLoader|body|ease|offsetTop|seeHeight|getOffset|is|toInteger|or|while|out|el|createLazyloader|imageList|querySelectorAll|Date|delay|left|toStr|atleast|transition|webp|maxSafeInteger|setAttribute|originalsrc|getAttribute|loader|like|array|base64|min|max|type|an|requires|Function|data|isNaN|Number|vuUAAA|UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAwA0JaQAA3AA|image|toString|onerror|pow|width|53|floor|isFinite|onload|abs|setTimeout|clearTimeout|pageYOffset|getBoundingClientRect|replace|Image|ready|jpg|filter|innerHeight|onscroll|scroll|pageXOffset|clientTop|lazy|clientLeft|settings|the|provided|second|argument|must|be|void|defined|when'.split('|'), 0, {}))
function loadScriptByAsync(src) { var asyncScript = document.createElement("script"); asyncScript.async = true; asyncScript.crossorigin = "anonymous"; asyncScript.src = src; firstScript = document.getElementsByTagName("script")[0]; firstScript.parentNode.insertBefore(asyncScript, firstScript); }</script> function loadScriptByAsync(src) { var asyncScript = document.createElement("script"); asyncScript.async = true; asyncScript.crossorigin = "anonymous"; asyncScript.src = src; firstScript = document.getElementsByTagName("script")[0]; firstScript.parentNode.insertBefore(asyncScript, firstScript); }</script>
<script src="https://data.globalhighlights.com/js/swiper-bundle-7.0.9.min.js"></script>
<script src="https://data.globalhighlights.com/js/flatpickr-v4.6.11.min.js"></script>
<script> <script>
document.addEventListener('DOMContentLoaded', () => { document.addEventListener('DOMContentLoaded', () => {
flatpickr("#starting_date", { flatpickr("#starting_date", {
@ -509,13 +491,7 @@
} }
</script> </script>
<script src="https://data.globalhighlights.com/js/jquery-1.8.2.min.js"></script>
<script src="https://data.globalhighlights.com/js/jquery.mailAutoComplete-4.0.min.js"></script>
<script>
$("#newsletter_email").mailAutoComplete({
email: ['gmail.com', 'outlook.com', 'yahoo.com', 'icloud.com', 'hotmail.com', 'live.com', 'aol.com']
});
</script>
<!--@IN-ARTICLE-GOOGLE@--> <!--@IN-ARTICLE-GOOGLE@-->
<script type="application/ld+json"> <script type="application/ld+json">
{ {

@ -210,7 +210,7 @@
<option value="Jan. 2027">Jan. 2027</option> <option value="Jan. 2027">Jan. 2027</option>
<option value="Feb. 2027">Feb. 2027</option> <option value="Feb. 2027">Feb. 2027</option>
<option value="Mar. 2027">Mar. 2027</option> <option value="Mar. 2027">Mar. 2027</option>
<option value="Apr. 2027">Apr. 2027</option> <option value="Apr. 2027">Apr. 2027</option>
</select> </select>
</div> </div>
</div> </div>
@ -677,10 +677,4 @@ $(function () {
} }
}); });
}) })
</script>
<script src="https://data.globalhighlights.com/js/jquery.mailAutoComplete-4.0.min.js"></script><script>
$("#email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script> </script>

@ -19,7 +19,6 @@
<link rel="dns-prefetch" href="https://www.googletagmanager.com"> <link rel="dns-prefetch" href="https://www.googletagmanager.com">
<!--@MAIN-CSS@--> <!--@MAIN-CSS@-->
<!--@ADDON-CSS@-->
<!-- Google Tag Manager --> <!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) { <script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({ w[l] = w[l] || []; w[l].push({
@ -29,23 +28,7 @@
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src = j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f); 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MNKHRM5');</script> })(window, document, 'script', 'dataLayer', 'GTM-MNKHRM5');</script>
<!-- Global site tag (gtag.js) - Google Ads: 996341496 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-996341496"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'AW-996341496');
</script>
<!-- Global site tag (gtag.js) - Google Analytics
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-31694-22"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-31694-22');
</script>-->
<!-- Google tag (gtag.js) --> <!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5VT6KGSG67"></script> <script async src="https://www.googletagmanager.com/gtag/js?id=G-5VT6KGSG67"></script>
<script> <script>
@ -61,7 +44,6 @@
w.gh_template_name = w.gh_template_name || 'mobile'; w.gh_template_name = w.gh_template_name || 'mobile';
})(window); })(window);
</script> </script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4231674166786366" crossorigin="anonymous"></script>
</head> </head>
<body> <body>
@ -223,20 +205,20 @@
<tr> <tr>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" alt="Save Your Time" class="img-responsive" width="100" height="100"></div> <div class="whyus_image"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png" alt="Customize Your Tour" class="img-responsive" width="100" height="100"></div>
<h3>Save Your Time</h3> <h3>Customize Your Tour</h3>
<ul class="infolist"> <ul class="infolist">
<li>Less research, more enjoyment!</li> <li>Personal Travel Advisors</li>
<li> Real-time 1V1 expert planning.</li> <li>Instant Response, No More Waits! </li>
<li> Seamless coordination</li> <li>Direct Connections, Supreme Values</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png" alt="Maximize Your Flexibility" class="img-responsive" width="100" height="100"></div> <div class="whyus_image"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/128f3292b9054cd295eeaf0a6223ee93_cut_100x100_241.png" alt="Maximize Your Flexibility" class="img-responsive" width="100" height="100"></div>
<h3>Maximize Your Flexibility</h3> <h3>Maximize Your Flexibility</h3>
<ul class="infolist"> <ul class="infolist">
<li>Your own personal guide and ride. </li> <li>Your own personal guide and ride. </li>
@ -248,18 +230,18 @@
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"><img src="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png" alt="Ensure Your Satisfactory" class="img-responsive" width="100" height="100"></div> <div class="whyus_image"><img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/93cce481fbbb427882ce36285d73119d_cut_100x100_241.png" alt="Ensure Your Satisfactory" class="img-responsive" width="100" height="100"></div>
<h3>Ensure Your Satisfactory</h3> <h3>Ensure Your Satisfactory</h3>
<ul class="infolist"> <ul class="infolist">
<li>Well-trained elite 20% of guides.</li> <li>The Top 20% nationwide guides at your service.</li>
<li> 20% vacancy on vehicles.</li> <li>20% more space on your group's transportation.</li>
<li> 24/7 emergency support.</li> <li> 24/7 emergency support.</li>
</ul> </ul>
</div> </div>
</td> </td>
<td> <td>
<div class="bottom_why_us_content"> <div class="bottom_why_us_content">
<div class="whyus_image"> <img src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png" alt="Celebrate Your Journey" class="img-responsive" width="100" height="100"></div> <div class="whyus_image"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png" alt="Celebrate Your Journey" class="img-responsive" width="100" height="100"></div>
<h3>Celebrate Your Journey</h3> <h3>Celebrate Your Journey</h3>
<ul class="infolist"> <ul class="infolist">
<li>Family adventures</li> <li>Family adventures</li>
@ -296,8 +278,8 @@
</div> </div>
<div class="infobottom"> <div class="infobottom">
<img src="https://images.asiahighlights.com/allpicture/2024/03/4454a0450c304882891c35aea1b8baa9_cut_765x535_241.png" alt="China Highlights Logo" width="152px" height="108" class="bottomlogocenter"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.asiahighlights.com/allpicture/2024/03/4454a0450c304882891c35aea1b8baa9_cut_765x535_241.png" alt="China Highlights Logo" width="152px" height="108" class="bottomlogocenter">
<img src="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" style="display: block; margin: 10px auto;" width="104" height="20"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" style="display: block; margin: 10px auto;" width="104" height="20">
<div class="bottomlogoinfo">Rated 4.6 out of 5 | Excellence<br> <div class="bottomlogoinfo">Rated 4.6 out of 5 | Excellence<br>
China Highlights International<br> China Highlights International<br>
Travel Service Co., LTD Travel Service Co., LTD
@ -333,7 +315,7 @@
<li><a href="/about">About us</a></li> <li><a href="/about">About us</a></li>
<li><a href="/travel-agents">Travel Agents</a></li> <li><a href="/travel-agents">Travel Agents</a></li>
<li><a href="/reviews">Reviews</a></li> <li><a href="/reviews">Reviews</a></li>
<li><a href="/company-history.htm">History</li> <li><a href="/loyalty-program">Loyalty Program</li>
<li><a href="/contactus">Contact us</a></li> <li><a href="/contactus">Contact us</a></li>
<li><a href="/privacy.htm">Privacy Policy</a></li> <li><a href="/privacy.htm">Privacy Policy</a></li>
<li><a href="/terms-of-use.htm">Terms</a></li> <li><a href="/terms-of-use.htm">Terms</a></li>
@ -362,7 +344,7 @@
<div class="featureon"> <div class="featureon">
<span class="followtitle">Featured on</span> <span class="followtitle">Featured on</span>
<img src="https://images.chinahighlights.com/allpicture/2024/03/50b63774d70f4bbc9f9ec14e5dc9822f_cut_436x250_241.png" alt="Global Highlights was featured on these medias." class="img-responsive" width="436px" height="250px"> <img src="https://data.globalhighlights.com/grey.gif" loader="lazy" originalsrc="https://images.chinahighlights.com/allpicture/2024/03/50b63774d70f4bbc9f9ec14e5dc9822f_cut_436x250_241.png" alt="Global Highlights was featured on these medias." class="img-responsive" width="436px" height="250px">
</div> </div>
<div class="featureon"> <div class="featureon">
@ -452,8 +434,7 @@
eval(function (p, a, c, k, e, d) { e = function (c) { return (c < a ? "" : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if (!''.replace(/^/, String)) { while (c--) d[e(c)] = k[c] || e(c); k = [function (e) { return d[e] }]; e = function () { return '\\w+' }; c = 1; }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p; }('8.R=10;(4(){3 h=b 26();4 11(X){8.R=X&&X.1I===\'1b\'?h.1V==1:10;1c()}h.1T=11;h.1Z=11;h.S=\'1M:1R/1x;1F,1Q/1P=\'})();5(!c.g){c.g=(4(){3 1u=y.M.1S;3 P=4(l){6 I l==="4"||1u.Q(l)==="[19 1L]"};3 1j=4(D){3 f=1O(D);5(1N(f)){6 0}5(f===0||!1Y(f)){6 f}6(f>0?1:-1)*o.1X(o.20(f))};3 1y=o.1U(2,1W)-1;3 1a=4(D){3 9=1j(D);6 o.1G(o.1H(9,0),1y)};6 4 g(J){3 C=E;3 U=y(J);5(J==p){F b H("c.g 1K 1J 1E-1D 19 - V p 1k B")}3 n=j.m>1?j[1]:2o B;3 T;5(I n!=="B"){5(!P(n)){F b H("c.g: 2q 2j, 2i 2k 2l 2m 2n a 4")}5(j.m>2){T=j[2]}}3 9=1a(U.m);3 A=P(C)?y(b C(9)):b c(9);3 k=0;3 d;1l(k<9){d=U[k];5(n){A[k]=I T==="B"?n(d,k):n.Q(T,d,k)}z{A[k]=d}k+=1}A.m=9;6 A}}())}5(!c.M.v){c.M.v=4(u){3 T,k;5(E==p){F b H("E 1i p 1k V 2p")}3 O=y(E);3 9=O.m>>>0;5(I u!=="4"){F b H(u+" 1i V a 4")}5(j.m>1){T=j[1]}k=0;1l(k<9){3 d;5(k 13 O){d=O[k];u.Q(T,d,k,O)}k++}}}4 1c(2h){3 14=4(i){i.W("1b",4(){i.r.q=1});5(8.R){i.1z("S",i.1B("1A").25(\'.28\',\'.1x\'))}z{i.1z("S",i.1B("1A"))}};3 1p=c.g(e.1q("h[1C=27]"));1p.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m";14(7)});3 w=1o();w();4 12(l,1s,1v){3 N=p,L=b 1r();6 4(){3 K=b 1r();22(N);5(K-L>=1v){l();L=K}z{N=21(l,1s)}}}4 1h(1n){3 16=1n.24();6{15:16.15+8.23-e.t.2e,1t:16.1t+8.2d-e.t.2g}}4 1o(){3 G=c.g(e.1q("h[1C=2f]"));G.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m"});6 4(){3 1g=8.2a;3 x=(e.t&&e.t.x)||(e.1d&&e.1d.x);G=G.29(4(7,Y){3 1f=1h(7).15;3 Z=1f<1g+x;5(Z){14(7)}6!Z})}}5(8.W){8.W("2c",12(w,s,s),10)}z{5(8.17){8.17("2b",12(w,s,s))}}};', 62, 151, '|||var|function|if|return|element|window|len||new|Array|kValue|document|number|from|img|target|arguments||fn|length|mapFn|Math|null|opacity|style|500|documentElement|callback|forEach|lazyloader|scrollTop|Object|else||undefined||value|this|throw|lazyImageList|TypeError|typeof|arrayLike|curTime|startTime|prototype|timeout||isCallable|call|isSupportWebp|src||items|not|addEventListener|event|index|hasVisible|false|getResult|throttle|in|loadImageByUrl|top|box|attachEvent|5s|object|toLength|load|createImageLoader|body|ease|offsetTop|seeHeight|getOffset|is|toInteger|or|while|out|el|createLazyloader|imageList|querySelectorAll|Date|delay|left|toStr|atleast|transition|webp|maxSafeInteger|setAttribute|originalsrc|getAttribute|loader|like|array|base64|min|max|type|an|requires|Function|data|isNaN|Number|vuUAAA|UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAwA0JaQAA3AA|image|toString|onerror|pow|width|53|floor|isFinite|onload|abs|setTimeout|clearTimeout|pageYOffset|getBoundingClientRect|replace|Image|ready|jpg|filter|innerHeight|onscroll|scroll|pageXOffset|clientTop|lazy|clientLeft|settings|the|provided|second|argument|must|be|void|defined|when'.split('|'), 0, {})) eval(function (p, a, c, k, e, d) { e = function (c) { return (c < a ? "" : e(parseInt(c / a))) + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) }; if (!''.replace(/^/, String)) { while (c--) d[e(c)] = k[c] || e(c); k = [function (e) { return d[e] }]; e = function () { return '\\w+' }; c = 1; }; while (c--) if (k[c]) p = p.replace(new RegExp('\\b' + e(c) + '\\b', 'g'), k[c]); return p; }('8.R=10;(4(){3 h=b 26();4 11(X){8.R=X&&X.1I===\'1b\'?h.1V==1:10;1c()}h.1T=11;h.1Z=11;h.S=\'1M:1R/1x;1F,1Q/1P=\'})();5(!c.g){c.g=(4(){3 1u=y.M.1S;3 P=4(l){6 I l==="4"||1u.Q(l)==="[19 1L]"};3 1j=4(D){3 f=1O(D);5(1N(f)){6 0}5(f===0||!1Y(f)){6 f}6(f>0?1:-1)*o.1X(o.20(f))};3 1y=o.1U(2,1W)-1;3 1a=4(D){3 9=1j(D);6 o.1G(o.1H(9,0),1y)};6 4 g(J){3 C=E;3 U=y(J);5(J==p){F b H("c.g 1K 1J 1E-1D 19 - V p 1k B")}3 n=j.m>1?j[1]:2o B;3 T;5(I n!=="B"){5(!P(n)){F b H("c.g: 2q 2j, 2i 2k 2l 2m 2n a 4")}5(j.m>2){T=j[2]}}3 9=1a(U.m);3 A=P(C)?y(b C(9)):b c(9);3 k=0;3 d;1l(k<9){d=U[k];5(n){A[k]=I T==="B"?n(d,k):n.Q(T,d,k)}z{A[k]=d}k+=1}A.m=9;6 A}}())}5(!c.M.v){c.M.v=4(u){3 T,k;5(E==p){F b H("E 1i p 1k V 2p")}3 O=y(E);3 9=O.m>>>0;5(I u!=="4"){F b H(u+" 1i V a 4")}5(j.m>1){T=j[1]}k=0;1l(k<9){3 d;5(k 13 O){d=O[k];u.Q(T,d,k,O)}k++}}}4 1c(2h){3 14=4(i){i.W("1b",4(){i.r.q=1});5(8.R){i.1z("S",i.1B("1A").25(\'.28\',\'.1x\'))}z{i.1z("S",i.1B("1A"))}};3 1p=c.g(e.1q("h[1C=27]"));1p.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m";14(7)});3 w=1o();w();4 12(l,1s,1v){3 N=p,L=b 1r();6 4(){3 K=b 1r();22(N);5(K-L>=1v){l();L=K}z{N=21(l,1s)}}}4 1h(1n){3 16=1n.24();6{15:16.15+8.23-e.t.2e,1t:16.1t+8.2d-e.t.2g}}4 1o(){3 G=c.g(e.1q("h[1C=2f]"));G.v(4(7,Y){7.r.q=0;7.r.1w="q 0.18 1e-13-1m"});6 4(){3 1g=8.2a;3 x=(e.t&&e.t.x)||(e.1d&&e.1d.x);G=G.29(4(7,Y){3 1f=1h(7).15;3 Z=1f<1g+x;5(Z){14(7)}6!Z})}}5(8.W){8.W("2c",12(w,s,s),10)}z{5(8.17){8.17("2b",12(w,s,s))}}};', 62, 151, '|||var|function|if|return|element|window|len||new|Array|kValue|document|number|from|img|target|arguments||fn|length|mapFn|Math|null|opacity|style|500|documentElement|callback|forEach|lazyloader|scrollTop|Object|else||undefined||value|this|throw|lazyImageList|TypeError|typeof|arrayLike|curTime|startTime|prototype|timeout||isCallable|call|isSupportWebp|src||items|not|addEventListener|event|index|hasVisible|false|getResult|throttle|in|loadImageByUrl|top|box|attachEvent|5s|object|toLength|load|createImageLoader|body|ease|offsetTop|seeHeight|getOffset|is|toInteger|or|while|out|el|createLazyloader|imageList|querySelectorAll|Date|delay|left|toStr|atleast|transition|webp|maxSafeInteger|setAttribute|originalsrc|getAttribute|loader|like|array|base64|min|max|type|an|requires|Function|data|isNaN|Number|vuUAAA|UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAwA0JaQAA3AA|image|toString|onerror|pow|width|53|floor|isFinite|onload|abs|setTimeout|clearTimeout|pageYOffset|getBoundingClientRect|replace|Image|ready|jpg|filter|innerHeight|onscroll|scroll|pageXOffset|clientTop|lazy|clientLeft|settings|the|provided|second|argument|must|be|void|defined|when'.split('|'), 0, {}))
function loadScriptByAsync(src) { var asyncScript = document.createElement("script"); asyncScript.async = true; asyncScript.crossorigin = "anonymous"; asyncScript.src = src; firstScript = document.getElementsByTagName("script")[0]; firstScript.parentNode.insertBefore(asyncScript, firstScript); } function loadScriptByAsync(src) { var asyncScript = document.createElement("script"); asyncScript.async = true; asyncScript.crossorigin = "anonymous"; asyncScript.src = src; firstScript = document.getElementsByTagName("script")[0]; firstScript.parentNode.insertBefore(asyncScript, firstScript); }
</script> </script>
<script src="https://data.globalhighlights.com/js/swiper-bundle-7.0.9.min.js"></script>
<script src="https://data.globalhighlights.com/js/flatpickr-v4.6.11.min.js"></script>
<script> <script>
document.addEventListener('DOMContentLoaded', () => { document.addEventListener('DOMContentLoaded', () => {
flatpickr("#starting_date", { flatpickr("#starting_date", {
@ -465,15 +446,9 @@
}); });
}); });
</script> </script>
<script src="https://data.globalhighlights.com/js/jquery-1.8.2.min.js"></script>
<script src="https://data.globalhighlights.com/js/jquery.mailAutoComplete-4.0.min.js"></script>
<script>
$("#newsletter_email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>
<!--@PRODUCT-JS@--> <!--@PRODUCT-JS@-->
<!--@ADDON-JS@-->
<!--@IN-ARTICLE-GOOGLE@--> <!--@IN-ARTICLE-GOOGLE@-->
<script type="application/ld+json"> <script type="application/ld+json">

Loading…
Cancel
Save