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

master
赵鹏 1 year ago
commit b0aa3bf4e3

@ -105,14 +105,18 @@ class Information extends CI_Controller
return true; return true;
} }
//复制节点结构到任意站点的节点下面。-- lmr - 1225 //[国际->国际]复制节点结构到任意站点的节点下面。-- lmr
//is_id 信息结构ID
//复制节点结构到任意站点的节点下面。-- lmr
//is_id 信息结构ID //is_id 信息结构ID
public function copy_by_is_id($src_is_id, $dest_is_id) public function copy_by_is_id($src_is_id, $dest_is_id)
{ {
if (empty ($src_is_id) || empty ($src_is_id)) {
echo 'need 2 is_id v1';
return false;
}
$data = array(); $data = array();
if ($src_is_id == $dest_is_id || empty ($src_is_id) || empty ($dest_is_id)) { if ($src_is_id == $dest_is_id || empty ($src_is_id) || empty ($dest_is_id)) {
echo 'need 2 is_id v2';
return false; return false;
} }
// 源节点 // 源节点
@ -207,6 +211,158 @@ class Information extends CI_Controller
if (!empty ($item_meta_pcschema)) if (!empty ($item_meta_pcschema))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_SCHEMA', $item_meta_pcschema); $this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_SCHEMA', $item_meta_pcschema);
// gm 补充meta
$item_meta_addon_css = $this->InfoMetas_model->get($item->is_ic_id, 'meta_addon_css');
if (!empty ($item_meta_addon_css))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'meta_addon_css', $item_meta_addon_css);
$item_meta_addon_js = $this->InfoMetas_model->get($item->is_ic_id, 'meta_addon_js');
if (!empty ($item_meta_addon_js))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'meta_addon_js', $item_meta_addon_js);
$item_meta_use_list_picture = $this->InfoMetas_model->get($item->is_ic_id, 'meta_use_list_picture');
if (!empty ($item_meta_use_list_picture))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'meta_use_list_picture', $item_meta_use_list_picture);
// 添加节点
$this->InfoStructures_model->Add_with_sitecode($target_is_id, $this->InfoContents_model->insert_id, 999, $dest->is_sitecode);
$node_map[$item->is_id] = $this->InfoStructures_model->insert_id;
}
print_r($node_map);
// print_r($src);
// print_r($src_path);
// print_r($dest);
// print_r($dest_path);
//返回状态
$data[] = array('name' => 'ok', 'value' => 'copy_by_is_id() success!');
echo json_encode($data);
return true;
}
//[德语->国际]复制节点结构到任意站点的节点下面。-- lmr
//is_id 信息结构ID
public function copy_by_is_id_gm($src_is_id, $dest_is_id)
{
if (empty ($src_is_id) || empty ($src_is_id)) {
echo 'need 2 is_id v1';
return false;
}
$data = array();
if ($src_is_id == $dest_is_id || empty ($src_is_id) || empty ($dest_is_id)) {
echo 'need 2 is_id v2';
return false;
}
// 源节点
$src = $this->InfoStructures_model->Detail_gm($src_is_id);
$src_path = $this->Information_model->get_list_by_path_gm($src->is_path, false, $src->is_sitecode);
// 源子节点
foreach ($src_path as $n => $item) {
if ($item->is_id === $src->is_id) {
unset($src_path[$n]);
}
}
// 目标节点结构
$dest = $this->InfoStructures_model->Detail($dest_is_id);
$dest_path = $this->Information_model->get_list_by_path($dest->is_path, false, $dest->is_sitecode);
// 目标子节点
foreach ($dest_path as $n => $item) {
if ($item->is_id === $dest->is_id) {
unset($dest_path[$n]);
}
}
// 新旧节点对应表
$node_map = array();
// 循环复制各个层级的节点。
foreach ($src_path as $n => $item) {
// 定位复制的父节点
$target_is_id = $dest->is_id;
foreach ($node_map as $old => $new) {
if ($item->is_parent_id == $old) {
$target_is_id = $new;
}
}
// info_content
$item_info_content = $this->InfoContents_model->get_ic_contents2_gm($item->is_ic_id);
$this->InfoContents_model->Add_with_sitecode(
$item_info_content->ic_url,
$item_info_content->ic_url_title,
$item_info_content->ic_type,
$item_info_content->ic_title,
$item_info_content->ic_content,
$item_info_content->ic_summary,
$item_info_content->ic_seo_title,
$item_info_content->ic_seo_description,
$item_info_content->ic_seo_keywords,
$item_info_content->ic_show_bread_crumbs,
$item_info_content->ic_status,
$item_info_content->ic_template,
$item_info_content->ic_photo,
$item_info_content->ic_photo_width,
$item_info_content->ic_photo_height,
$item_info_content->ic_recommend_tours,
$item_info_content->ic_recommend_packages,
$item_info_content->ic_ht_area_id,
$item_info_content->ic_ht_area_type,
$item_info_content->ic_ht_product_id,
$item_info_content->ic_ht_product_type,
$item_info_content->ic_author,
$dest->is_sitecode
);
// info_meta
$item_meta_amp = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP');
$item_meta_ampbody = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_BODY');
$item_meta_ampcss = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_CSS');
$item_meta_ampscript = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_SCRIPT');
$item_meta_ampjson = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_JSON');
$item_meta_ampstatus = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_STATUS');
$item_meta_pcstatus = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_BODY_PC_STATUS');
$item_meta_pcbody = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_BODY_PC');
$item_meta_pccss = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_CSS_PC');
$item_meta_pcschema = $this->InfoMetas_model->get_gm($item->is_ic_id, 'AMP_SCHEMA');
if (!empty ($item_meta_amp))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP', $item_meta_amp);
if (!empty ($item_meta_ampbody))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_BODY', $item_meta_ampbody);
if (!empty ($item_meta_ampcss))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_CSS', $item_meta_ampcss);
if (!empty ($item_meta_ampscript))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_SCRIPT', $item_meta_ampscript);
if (!empty ($item_meta_ampjson))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_JSON', $item_meta_ampjson);
if (!empty ($item_meta_ampstatus))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_STATUS', $item_meta_ampstatus);
if (!empty ($item_meta_pcstatus))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_BODY_PC_STATUS', $item_meta_pcstatus);
if (!empty ($item_meta_pcbody))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_BODY_PC', $item_meta_pcbody);
if (!empty ($item_meta_pccss))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_CSS_PC', $item_meta_pccss);
if (!empty ($item_meta_pcschema))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'AMP_SCHEMA', $item_meta_pcschema);
// gm 补充meta
$item_meta_addon_css = $this->InfoMetas_model->get_gm($item->is_ic_id, 'meta_addon_css');
if (!empty ($item_meta_addon_css))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'meta_addon_css', $item_meta_addon_css);
$item_meta_addon_js = $this->InfoMetas_model->get_gm($item->is_ic_id, 'meta_addon_js');
if (!empty ($item_meta_addon_js))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'meta_addon_js', $item_meta_addon_js);
$item_meta_use_list_picture = $this->InfoMetas_model->get_gm($item->is_ic_id, 'meta_use_list_picture');
if (!empty ($item_meta_use_list_picture))
$this->InfoMetas_model->Add($this->InfoContents_model->insert_id, 'meta_use_list_picture', $item_meta_use_list_picture);
// 添加节点 // 添加节点
$this->InfoStructures_model->Add_with_sitecode($target_is_id, $this->InfoContents_model->insert_id, 999, $dest->is_sitecode); $this->InfoStructures_model->Add_with_sitecode($target_is_id, $this->InfoContents_model->insert_id, 999, $dest->is_sitecode);
$node_map[$item->is_id] = $this->InfoStructures_model->insert_id; $node_map[$item->is_id] = $this->InfoStructures_model->insert_id;
@ -316,7 +472,7 @@ class Information extends CI_Controller
} }
//可选的展示模板 //可选的展示模板
if (in_array($this->config->item('site_code'), array('gh_vac', 'gh_vc', 'gh_jp', 'gh_ru', 'gh_it'))) { if (in_array($this->config->item('site_code'), array('gh_vac', 'gh_vc', 'gh_jp', 'gh_ru', 'gh_it', 'gh_gm'))) {
$this->config->set_item('templates', $this->config->item('templates_gh')); $this->config->set_item('templates', $this->config->item('templates_gh'));
} }
@ -928,13 +1084,6 @@ class Information extends CI_Controller
); );
$template = str_replace('<!--@STRUCTURED-DATA-ARTICLE-BLOCK@-->', $article_structured_data_content, $template); $template = str_replace('<!--@STRUCTURED-DATA-ARTICLE-BLOCK@-->', $article_structured_data_content, $template);
$article_top_image_content = $this->load->view(
$template_path . '-info-top-img',
array('information' => $information),
true
);
$template = str_replace('<!--@INFO-TOP-IMAGE@-->', $article_top_image_content, $template);
$info_page_form_content = $this->load->view($template_path . '-info-page-form', false, true); $info_page_form_content = $this->load->view($template_path . '-info-page-form', false, true);
$information->ic_content = str_replace('<!--@INFO-PAGE-FORM@-->', $info_page_form_content, $information->ic_content); $information->ic_content = str_replace('<!--@INFO-PAGE-FORM@-->', $info_page_form_content, $information->ic_content);
@ -945,8 +1094,37 @@ class Information extends CI_Controller
$template = str_replace('?product_code=', '?product_code=' . $meta_product_code, $template); $template = str_replace('?product_code=', '?product_code=' . $meta_product_code, $template);
$information->ic_content = str_replace('<!--@INQUIRY-FORM@-->', $inquiry_form_template, $information->ic_content); $information->ic_content = str_replace('<!--@INQUIRY-FORM@-->', $inquiry_form_template, $information->ic_content);
$breadcrumb_content = $this->load->view($template_path . '-breadcrumb', array('breadcrumb_data' => $breadcrumb_data), true); $ads_by_google = !empty ($meta_google_ad_article);
$information->ic_content = str_replace('<!--@BREADCRUMB-BLOCK@-->', $breadcrumb_content, $information->ic_content); //H1模板替换
$data_H1 = array();
$data_H1['infocategory'] = $this->Information_model->get_detail_by_path($information->is_path, 1); //信息所属分类,获取信息顶级节点内容
$data_H1['author'] = ''; //获取作者信息
$author = $this->Operator_model->get_author_nikename($information->ic_author);
if (!empty ($author)) {
$data_H1['author'] = $author->OPI_FirstName;
} else {
$author_web = $this->Infoauthors_model->detail_by_id($information->ic_author); //原始作者,可能是在线作者等
if (!empty ($author_web)) {
$data_H1['author'] = $author_web->a_name;
}
}
// 检查图片地址格式
$parsed_photo = $information->ic_photo;
$parsed_photo_url = parse_url($information->ic_photo);
if (
(!isset ($parsed_photo_url['host']) || !isset ($parsed_photo_url['scheme'])) && isset ($parsed_photo_url['path'])
) {
$parsed_photo = 'https://images.chinahighlights.com' . $parsed_photo_url['path'];
}
$data_H1['ic_title'] = $information->ic_title;
$data_H1['ic_photo'] = $parsed_photo;
$data_H1['breadcrumb_data'] = $breadcrumb_data;
$data_H1['ads_by_google'] = $ads_by_google;
$data_H1['ic_datetime'] = $information->ic_datetime;
$template_H1 = $this->load->view($template_path . '-h1', $data_H1, true);
$template = str_replace('<!--@HEAD_1@-->', $template_H1, $template);
} }
// CH: 1; AH: 28; GH : 33 // CH: 1; AH: 28; GH : 33
@ -1160,17 +1338,6 @@ class Information extends CI_Controller
$template = str_replace('<!--@TOP-BANNER@-->', '<div class="detailtopbanner">' . $template_TrainSearch . '</div>', $template); $template = str_replace('<!--@TOP-BANNER@-->', '<div class="detailtopbanner">' . $template_TrainSearch . '</div>', $template);
} }
} }
$meta_addon_picture_url = get_meta($information->ic_id, 'meta_addon_picture_url');
if (!empty($meta_addon_picture)) {
if (!empty($meta_addon_picture_url)) {
$template = str_replace('<!--@TOP-BANNER@-->', '<div class="detailtopbanner"><a href="' . $meta_addon_picture_url . '"> <img class="img-responsive" alt="' . $information->ic_title . '" src="' . $meta_addon_picture . '"></a></div>', $template);
} else {
$template = str_replace('<!--@TOP-BANNER@-->', '<div class="detailtopbanner"><img class="img-responsive" alt="' . $information->ic_title . '" src="' . $meta_addon_picture . '"><div class="ta_tag">
<img src="https://data.chinahighlights.com/image/forms/ch-2023-trip-advisor-excellent-certificate.png" style="width: 120px !important;height: auto;" width="208" height="236">
</div>' . $template_TrainSearch . '</div>', $template);
}
}
//顶部视频 //顶部视频
$meta_news_video = get_meta($information->ic_id, 'meta_news_video'); $meta_news_video = get_meta($information->ic_id, 'meta_news_video');
$meta_video_picture = get_meta($information->ic_id, 'meta_video_picture'); $meta_video_picture = get_meta($information->ic_id, 'meta_video_picture');
@ -1946,7 +2113,7 @@ class Information extends CI_Controller
// 结构化标签Article // 结构化标签Article
$article_structured_data_content = $this->load->view( $article_structured_data_content = $this->load->view(
$template_path . '-structured-data-article', $template_path . '-structured-data-article',
array('information' => $information, 'author' => $author), array('information' => $information, 'author' => $data['author']),
true true
); );
$template = str_replace('<!--@STRUCTURED-DATA-ARTICLE-BLOCK@-->', $article_structured_data_content, $template); $template = str_replace('<!--@STRUCTURED-DATA-ARTICLE-BLOCK@-->', $article_structured_data_content, $template);
@ -3266,12 +3433,13 @@ class Information extends CI_Controller
} }
} }
break; break;
//国际站 - GH //国际站 - GH - add gm
case 'gh_vac': case 'gh_vac':
case 'gh_vc': case 'gh_vc':
case 'gh_it': case 'gh_it':
case 'gh_ru': case 'gh_ru':
case 'gh_jp': case 'gh_jp':
case 'gh_gm':
$information = $this->Information_model->Detail($url); $information = $this->Information_model->Detail($url);
$meta_pc_amp = @get_meta($information->ic_id, 'AMP_BODY_PC_STATUS'); $meta_pc_amp = @get_meta($information->ic_id, 'AMP_BODY_PC_STATUS');
if ($delete_only) { if ($delete_only) {

@ -71,14 +71,33 @@ class InfoContents_model extends CI_Model
$query = $this->HT->query( $query = $this->HT->query(
$sql, $sql,
array( array(
$ic_url, $ic_url_title, $ic_type, $ic_title, str_replace( $ic_url,
$ic_url_title,
$ic_type,
$ic_title,
str_replace(
$this->config->item('media_image_url'), $this->config->item('media_image_url'),
$this->config->item('site_image_url'), $this->config->item('site_image_url'),
$ic_content $ic_content
), ),
$ic_summary, $ic_seo_title, $ic_seo_description, $ic_seo_keywords, $ic_show_bread_crumbs, $ic_status, $ic_summary,
$ic_template, $ic_photo, $ic_photo_width, $ic_photo_height, $this->config->item('site_code'), $ic_recommend_tours, $ic_recommend_packages, $ic_seo_title,
$ic_ht_area_id, $ic_ht_area_type, $ic_ht_product_id, $ic_ht_product_type, $ic_author $ic_seo_description,
$ic_seo_keywords,
$ic_show_bread_crumbs,
$ic_status,
$ic_template,
$ic_photo,
$ic_photo_width,
$ic_photo_height,
$this->config->item('site_code'),
$ic_recommend_tours,
$ic_recommend_packages,
$ic_ht_area_id,
$ic_ht_area_type,
$ic_ht_product_id,
$ic_ht_product_type,
$ic_author
) )
); );
$this->insert_id = $this->HT->last_id('infoContents'); $this->insert_id = $this->HT->last_id('infoContents');
@ -135,14 +154,33 @@ class InfoContents_model extends CI_Model
$query = $this->HT->query( $query = $this->HT->query(
$sql, $sql,
array( array(
$ic_url, $ic_url_title, $ic_type, $ic_title, str_replace( $ic_url,
$ic_url_title,
$ic_type,
$ic_title,
str_replace(
$this->config->item('media_image_url'), $this->config->item('media_image_url'),
$this->config->item('site_image_url'), $this->config->item('site_image_url'),
$ic_content $ic_content
), ),
$ic_summary, $ic_seo_title, $ic_seo_description, $ic_seo_keywords, $ic_show_bread_crumbs, $ic_status, $ic_summary,
$ic_template, $ic_photo, $ic_photo_width, $ic_photo_height, $site_code, $ic_recommend_tours, $ic_recommend_packages, $ic_seo_title,
$ic_ht_area_id, $ic_ht_area_type, $ic_ht_product_id, $ic_ht_product_type, $ic_author $ic_seo_description,
$ic_seo_keywords,
$ic_show_bread_crumbs,
$ic_status,
$ic_template,
$ic_photo,
$ic_photo_width,
$ic_photo_height,
$site_code,
$ic_recommend_tours,
$ic_recommend_packages,
$ic_ht_area_id,
$ic_ht_area_type,
$ic_ht_product_id,
$ic_ht_product_type,
$ic_author
) )
); );
$this->insert_id = $this->HT->last_id('infoContents'); $this->insert_id = $this->HT->last_id('infoContents');
@ -214,10 +252,30 @@ class InfoContents_model extends CI_Model
$query = $this->HT->query( $query = $this->HT->query(
$sql, $sql,
array( array(
$ic_url, $ic_url_title, $ic_type, $ic_title, $ic_content, $ic_summary, $ic_url,
$ic_seo_title, $ic_seo_description, $ic_seo_keywords, $ic_show_bread_crumbs, $ic_status, $ic_template, $ic_photo, $ic_photo_width, $ic_photo_height, $ic_url_title,
$ic_recommend_tours, $ic_recommend_packages, $ic_ht_area_id, $ic_type,
$ic_ht_area_type, $ic_ht_product_id, $ic_ht_product_type, $ic_author, $ic_id, $this->config->item('site_code') $ic_title,
$ic_content,
$ic_summary,
$ic_seo_title,
$ic_seo_description,
$ic_seo_keywords,
$ic_show_bread_crumbs,
$ic_status,
$ic_template,
$ic_photo,
$ic_photo_width,
$ic_photo_height,
$ic_recommend_tours,
$ic_recommend_packages,
$ic_ht_area_id,
$ic_ht_area_type,
$ic_ht_product_id,
$ic_ht_product_type,
$ic_author,
$ic_id,
$this->config->item('site_code')
) )
); );
return $query; return $query;
@ -278,6 +336,18 @@ class InfoContents_model extends CI_Model
} }
} }
public function get_ic_contents2_gm($ic_id)
{
$sql = "SELECT top 1 * from information_gm.dbo.infoContents where ic_id=?";
$query = $this->HT->query($sql, array($ic_id));
if ($query->result()) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
}
public function get_ic_contents_by_list($ic_id_list) public function get_ic_contents_by_list($ic_id_list)
{ {
$ic_id_list = trim($ic_id_list); $ic_id_list = trim($ic_id_list);

@ -152,6 +152,20 @@ class InfoMetas_model extends CI_Model
} }
} }
function get_gm($im_ic_id, $im_key)
{
$sql = "SELECT im.im_value \n"
. "FROM information_gm.dbo.infoMetas im \n"
. "WHERE im.im_ic_id = ? \n"
. " AND im.im_key = ?";
$query = $this->HT->query($sql, array($im_ic_id, $im_key));
if ($query->num_rows() > 0) {
return $query->row()->im_value;
} else {
return false;
}
}
function detail($im_ic_id, $im_key) function detail($im_ic_id, $im_key)
{ {
$sql = "SELECT im.im_value \n" $sql = "SELECT im.im_value \n"

@ -35,6 +35,28 @@ class InfoStructures_model extends CI_Model
} }
} }
function Detail_gm($is_id)
{
$sql = "SELECT TOP 1 is1.is_id, \n"
. " is1.is_parent_id, \n"
. " is1.is_path, \n"
. " is1.is_level, \n"
. " is1.is_sort, \n"
. " is1.is_sitecode, \n"
. " is1.is_datetime, \n"
. " is1.is_ic_id \n"
. "FROM information_gm.dbo.infoStructures is1 \n"
. "WHERE is1.is_id = ?";
$query = $this->HT->query($sql, array($is_id));
//print_r($this->HT->queries);
if ($query->result()) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
}
function Add($is_parent_id, $is_ic_id = -1, $is_sort = 999) function Add($is_parent_id, $is_ic_id = -1, $is_sort = 999)
{ {

@ -155,6 +155,18 @@ class Information_model extends CI_Model
return $this->GetList($filed, $site_code); return $this->GetList($filed, $site_code);
} }
//根据根节点路径获取子节点列表
function get_list_by_path_gm($path, $level = false, $site_code = false, $filed = false)
{
$this->init();
if ($level !== false) {
$this->level = " AND is1.is_level= '$level' ";
}
$this->path = " AND is1.is_path LIKE '$path%' ";
$this->orderBy = ' ORDER BY is1.is_level ASC, is1.is_sort ASC,is1.is_path ASC ';
return $this->GetList_gm($filed, $site_code);
}
/** /**
* 获取当前页面的面包屑,不包括当前节点 * 获取当前页面的面包屑,不包括当前节点
*/ */
@ -407,6 +419,86 @@ class Information_model extends CI_Model
} }
} }
function GetList_gm($filed = "", $site_code = "")
{
$this->topNum ? $sql = "SELECT TOP " . $this->topNum : $sql = "SELECT ";
if (empty ($filed)) {
$sql .= " is1.is_id, \n"
. " is1.is_parent_id, \n"
. " is1.is_path, \n"
. " is1.is_level, \n"
. " is1.is_sort, \n"
. " is1.is_sitecode, \n"
. " is1.is_datetime, \n"
. " is1.is_ic_id, \n"
. " ic.ic_id, \n"
. " ic.ic_url, \n"
. " ic.ic_url_title, \n"
. " ic.ic_type, \n"
. " ic.ic_title, \n"
. " ic.ic_content, \n"
. " ic.ic_summary, \n"
. " ic.ic_seo_title, \n"
. " ic.ic_seo_description, \n"
. " ic.ic_seo_keywords, \n"
. " ic.ic_show_bread_crumbs, \n"
. " ic.ic_status, \n"
. " ic.ic_template, \n"
. " ic.ic_photo, \n"
. " ic.ic_photo_width, \n"
. " ic.ic_photo_height, \n"
. " ic.ic_sitecode, \n"
. " ic.ic_recommend_tours, \n"
. " ic.ic_recommend_packages, \n"
. " ic.ic_datetime, \n"
. " ic.ic_ht_area_id, \n"
. " ic.ic_ht_area_type, \n"
. " ic.ic_ht_product_id, \n"
. " ic.ic_ht_product_type, \n"
. " ic.SRMS_SIC_Code, \n"
. " ic.SRMS_SIIT_Code, \n"
. " ic.ic_author \n";
} else {
$sql .= " $filed ";
}
//添加查询AMP发布状态
//$sql.=",isnull((select top 1 CONVERT(varchar, im_value) from infoMetas where im_ic_id=ic_id and im_key='AMP_STATUS'),0) as amp_status ";
$sql .= ",0 as amp_status ";
$sql .= "FROM information_gm.dbo.infoStructures is1 \n"
. " INNER JOIN information_gm.dbo.infoContents ic ON ic.ic_id = is1.is_ic_id \n"
. " left JOIN information_gm.dbo.infoMetas map on ic.ic_id = map.im_ic_id AND map.im_key = 'meta_addon_picture' \n"
. " left JOIN information_gm.dbo.infoMetas mapm on ic.ic_id = mapm.im_ic_id AND mapm.im_key = 'meta_addon_picture_mobile' \n"
. " AND ic.ic_sitecode = is1.is_sitecode \n"
. "WHERE is1.is_sitecode = ? ";
$this->search_title ? $sql .= $this->search_title : false;
$this->search_url ? $sql .= $this->search_url : false;
$this->search ? $sql .= $this->search : false;
$this->path ? $sql .= $this->path : false;
$this->level ? $sql .= $this->level : false;
$this->is_parent_id ? $sql .= $this->is_parent_id : false;
$this->is_id_array ? $sql .= $this->is_id_array : false;
$this->ic_url_is_id ? $sql .= $this->ic_url_is_id : false;
$this->ic_id ? $sql .= $this->ic_id : false;
$this->ic_type ? $sql .= $this->ic_type : false;
$this->ic_ht_area_type ? $sql .= $this->ic_ht_area_type : false;
$this->ic_ht_area_id ? $sql .= $this->ic_ht_area_id : false;
$this->orderBy ? $sql .= $this->orderBy : false;
$query = $this->HT->query($sql, array($site_code ? $site_code : $this->config->item('site_code')));
//print_r($this->HT->queries);
if ($this->topNum === 1) {
if ($query->num_rows() > 0) {
$row = $query->row();
return $row;
} else {
return FALSE;
}
} else {
return $query->result();
}
}
//根据区域信息获取根节点 //根据区域信息获取根节点
function GetRoot($ic_ht_area_type, $ic_ht_area_id) function GetRoot($ic_ht_area_type, $ic_ht_area_id)
{ {

@ -4,7 +4,7 @@
<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> <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 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">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>
</div> </div>
<?php }?> <?php }?>

@ -5,10 +5,10 @@
<?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><?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> <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><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <div class="more_tours"><a href="/reviews/thailand">More Thailand reviews</a></div> <?php }?> <div class="more_tours"><a href="/reviews/thailand">More Thailand reviews</a></div>
@ -20,10 +20,10 @@
<?php if (!empty($Hanoi)) {?> <?php if (!empty($Hanoi)) {?>
<?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 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> <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><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?><div class="more_tours"><a href="/reviews/vietnam">More Vietnam reviews</a></div> <?php }?><div class="more_tours"><a href="/reviews/vietnam">More Vietnam reviews</a></div>
@ -35,10 +35,10 @@
<?php if (!empty($Siem_Reap)) {?> <?php if (!empty($Siem_Reap)) {?>
<?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 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> <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><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?><div class="more_tours"><a href="/reviews/cambodia">More Cambodia reviews</a></div> <?php }?><div class="more_tours"><a href="/reviews/cambodia">More Cambodia reviews</a></div>
@ -50,10 +50,10 @@
<?php if (!empty($Tokyo)) {?> <?php if (!empty($Tokyo)) {?>
<?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 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> <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><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?><div class="more_tours"><a href="/reviews/japan">More Japan reviews</a></div> <?php }?><div class="more_tours"><a href="/reviews/japan">More Japan reviews</a></div>
@ -67,10 +67,10 @@
<?php if (!empty($Yangon)) {?> <?php if (!empty($Yangon)) {?>
<?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 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> <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><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?><div class="more_tours"><a href="/reviews/myanmar">More Myanmar reviews</a></div> <?php }?><div class="more_tours"><a href="/reviews/myanmar">More Myanmar reviews</a></div>
@ -82,10 +82,10 @@
<?php if (!empty($Beijing)) {?> <?php if (!empty($Beijing)) {?>
<?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 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> <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><?php echo $feedback['content'] ?></p> <p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <div class="more_tours"><a href="/reviews/china">More China reviews</a></div> <?php }?> <div class="more_tours"><a href="/reviews/china">More China reviews</a></div>

@ -1,5 +1,5 @@
<p style="text-align: center;margin-top: 80px;margin-bottom: 0;">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://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">
@ -25,7 +25,7 @@
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>

@ -17,7 +17,7 @@
<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://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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>

@ -1,5 +1,5 @@
<p style="text-align: center;margin-top: 80px;margin-bottom: 0;">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://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">
@ -26,7 +26,7 @@
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>

@ -14,7 +14,7 @@
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>

@ -1,11 +1,5 @@
<div class=topcontent> <div class=topcontent>
<div class="infotopimage"> <div class="infotopimage">
<?php if (!empty($meta_news_video) && !empty($meta_video_picture)) { ?>
<video autoplay="" controls="controls" id="bgvid" poster="<?php echo $meta_video_picture; ?>" src="<?php echo $meta_news_video; ?>" style="position: inherit;"> </video>
<?php }else{ ?>
<img src="<?php echo $meta_addon_picture; ?>"
alt="<?php echo !empty($information->ic_title)?$information->ic_title:'H1 title asiahighlights mobile first template'; ?>" class="img-responsive">
<?php } ?>
<div class="topbannerbg"> <div class="topbannerbg">
<div class="infocategory"> <div class="infocategory">
<a href="/" data-count="<?php echo count($breadcrumb_data) ?>">Home</a> <a href="/" data-count="<?php echo count($breadcrumb_data) ?>">Home</a>
@ -22,24 +16,5 @@
</div> </div>
</div> </div>
</div> </div>
<?php if ($ads_by_google) { ?>
<style>
#adsense-head-ads {
height: 427px;
min-height: 427px;
background: url(https://data.viaggio-in-cina.it/information-view/information/img/adsense.gif) center center no-repeat;
}
@media screen and (max-width: 767px) {
#adsense-head-ads {
height: 320px;
min-height: 320px;
}
}
</style>
<ins id="adsense-head-ads" class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4231674166786366" data-ad-slot="1166484387" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4231674166786366"
crossorigin="anonymous"></script>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
<?php } ?>
</div> </div>

@ -168,7 +168,6 @@
<select class="country_code" id="expectedMonth" name="expected_month" style="margin-top: 15px;"> <select class="country_code" id="expectedMonth" name="expected_month" style="margin-top: 15px;">
<option value="" disabled selected>Select your approximate travel date.</option> <option value="" disabled selected>Select your approximate travel date.</option>
<option value="Feb. 2024">Feb. 2024</option>
<option value="Mar. 2024">Mar. 2024</option> <option value="Mar. 2024">Mar. 2024</option>
<option value="Apr. 2024">Apr. 2024</option> <option value="Apr. 2024">Apr. 2024</option>
<option value="May. 2024">May. 2024</option> <option value="May. 2024">May. 2024</option>
@ -205,8 +204,10 @@
<option value="Oct. 2026">Oct. 2026</option> <option value="Oct. 2026">Oct. 2026</option>
<option value="Nov. 2026">Nov. 2026</option> <option value="Nov. 2026">Nov. 2026</option>
<option value="Dec. 2026">Dec. 2026</option> <option value="Dec. 2026">Dec. 2026</option>
<option value="Jan. 2017">Jan. 2017</option> <option value="Jan. 2027">Jan. 2027</option>
<option value="Feb. 2017">Feb. 2017</option> <option value="Feb. 2027">Feb. 2027</option>
<option value="Mar. 2027">Mar. 2027</option>
<option value="Apr. 2027">Apr. 2027</option>
</select> </select>
</div> </div>

@ -187,7 +187,6 @@
<select class="country_code" id="expectedMonth" name="expected_month" style="margin-top: 15px;"> <select class="country_code" id="expectedMonth" name="expected_month" style="margin-top: 15px;">
<option value="" disabled selected>Select your approximate travel date.</option> <option value="" disabled selected>Select your approximate travel date.</option>
<option value="Feb. 2024">Feb. 2024</option>
<option value="Mar. 2024">Mar. 2024</option> <option value="Mar. 2024">Mar. 2024</option>
<option value="Apr. 2024">Apr. 2024</option> <option value="Apr. 2024">Apr. 2024</option>
<option value="May. 2024">May. 2024</option> <option value="May. 2024">May. 2024</option>
@ -224,8 +223,10 @@
<option value="Oct. 2026">Oct. 2026</option> <option value="Oct. 2026">Oct. 2026</option>
<option value="Nov. 2026">Nov. 2026</option> <option value="Nov. 2026">Nov. 2026</option>
<option value="Dec. 2026">Dec. 2026</option> <option value="Dec. 2026">Dec. 2026</option>
<option value="Jan. 2017">Jan. 2017</option> <option value="Jan. 2027">Jan. 2027</option>
<option value="Feb. 2017">Feb. 2017</option> <option value="Feb. 2027">Feb. 2027</option>
<option value="Mar. 2027">Mar. 2027</option>
<option value="Apr. 2027">Apr. 2027</option>
</select> </select>
</div> </div>

@ -12,7 +12,12 @@
</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="-">
<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: 50px;
height: 22px;
top: -5px;
position: relative;
text-align: center;
font-size: 20px;">
<input class="minaddBtn addadult" id="plusAdult" type="button" value="+"> <input class="minaddBtn addadult" id="plusAdult" type="button" value="+">
</div> </div>
</div> </div>
@ -23,7 +28,12 @@
</p> </p>
<div class="numberBtn"> <div class="numberBtn">
<input class="minaddBtn reduceadult" id="minusKid" type="button" value="-"> <input class="minaddBtn reduceadult" id="minusKid" type="button" value="-">
<input class="number" type="text" id="kidNumber" readonly value="0" name="children_3_9_yrs"> <input class="number" type="text" id="kidNumber" readonly value="0" name="children_3_9_yrs" style="width: 50px;
height: 22px;
top: -5px;
position: relative;
text-align: center;
font-size: 20px;">
<input class="minaddBtn addadult" id="plusKid" type="button" value="+"> <input class="minaddBtn addadult" id="plusKid" type="button" value="+">
</div> </div>
</div> </div>

@ -25,7 +25,7 @@
<label for="Premium" style="font-size:18px;"> <label for="Premium" style="font-size:18px;">
Premium+Transfer+Dinner Premium+Transfer+Dinner
<div class="selectionMemo"> <div class="selectionMemo">
US$199 US$179 (6400THB)
</div> </div>
<div id='premium_ticket_left' style="display: none;">0 left</div> <div id='premium_ticket_left' style="display: none;">0 left</div>
</label> </label>
@ -35,7 +35,7 @@
<label for="VIP" style="font-size:18px;"> <label for="VIP" style="font-size:18px;">
VIP+Transfer+Dinner VIP+Transfer+Dinner
<div class="selectionMemo"> <div class="selectionMemo">
US$169 US$169 (5900THB)
</div> </div>
<div id='vip_ticket_left' style="display: none;">0 left</div> <div id='vip_ticket_left' style="display: none;">0 left</div>
</label> </label>
@ -45,7 +45,7 @@
<label for="Standard" style="font-size:18px;"> <label for="Standard" style="font-size:18px;">
Standard+Transfer+Dinner Standard+Transfer+Dinner
<div class="selectionMemo"> <div class="selectionMemo">
US$129 US$129 (4600THB)
</div> </div>
<div id='standard_ticket_left' style="display: none;">0 left</div> <div id='standard_ticket_left' style="display: none;">0 left</div>
</label> </label>
@ -62,7 +62,12 @@
<div class="numberBtn"> <div class="numberBtn">
<input class="minaddBtn reduceadult" id='minusButton' type="button" value="-"> <input class="minaddBtn reduceadult" id='minusButton' type="button" value="-">
<input class="number" id="adultNumberValue" readonly="readonly" type="text" value="1" <input class="number" id="adultNumberValue" readonly="readonly" type="text" value="1"
name="adult"> name="adult" style="width: 50px;
height: 22px;
top: -5px;
position: relative;
text-align: center;
font-size: 20px;">
<input class="minaddBtn addadult" id='plusButton' type="button" value="+"> <input class="minaddBtn addadult" id='plusButton' type="button" value="+">
</div> </div>
</div> </div>
@ -410,7 +415,7 @@
var currentTarget = event.currentTarget; var currentTarget = event.currentTarget;
var adultNumberValue = parseInt(adultNumberNode.value); var adultNumberValue = parseInt(adultNumberNode.value);
if (currentTarget.value === 'Premium+Transfer+Dinner') { if (currentTarget.value === 'Premium+Transfer+Dinner') {
ticketPrice = 199; ticketPrice = 179;
} else if (currentTarget.value === 'Standard+Transfer+Dinner') { } else if (currentTarget.value === 'Standard+Transfer+Dinner') {
ticketPrice = 129; ticketPrice = 129;
} else if (currentTarget.value === 'VIP+Transfer+Dinner') { } else if (currentTarget.value === 'VIP+Transfer+Dinner') {

@ -26,7 +26,7 @@
<label for="Premium" style="font-size:18px;"> <label for="Premium" style="font-size:18px;">
Premium+Transfer+Dinner Premium+Transfer+Dinner
<div class="selectionMemo"> <div class="selectionMemo">
US$199 US$179 (6400THB)
</div> </div>
<div id='premium_ticket_left' style="display: none;">0 left</div> <div id='premium_ticket_left' style="display: none;">0 left</div>
</label> </label>
@ -36,7 +36,7 @@
<label for="VIP" style="font-size:18px;"> <label for="VIP" style="font-size:18px;">
VIP+Transfer+Dinner VIP+Transfer+Dinner
<div class="selectionMemo"> <div class="selectionMemo">
US$169 US$169 (5900THB)
</div> </div>
<div id='vip_ticket_left' style="display: none;">0 left</div> <div id='vip_ticket_left' style="display: none;">0 left</div>
</label> </label>
@ -46,7 +46,7 @@
<label for="Standard" style="font-size:18px;"> <label for="Standard" style="font-size:18px;">
Standard+Transfer+Dinner Standard+Transfer+Dinner
<div class="selectionMemo"> <div class="selectionMemo">
US$129 US$129 (4600THB)
</div> </div>
<div id='standard_ticket_left' style="display: none;">0 left</div> <div id='standard_ticket_left' style="display: none;">0 left</div>
</label> </label>
@ -62,7 +62,13 @@
</span> </span>
<div class="numberBtn"> <div class="numberBtn">
<input class="minaddBtn reduceadult" id='minusButton' type="button" value="-"> <input class="minaddBtn reduceadult" id='minusButton' type="button" value="-">
<input class="number" id="adultNumberValue" readonly="readonly" type="text" value="1" name="adult"> <input class="number" id="adultNumberValue" readonly="readonly" type="text" value="1"
name="adult" style="width: 50px;
height: 22px;
top: -5px;
position: relative;
text-align: center;
font-size: 20px;">
<input class="minaddBtn addadult" id='plusButton' type="button" value="+"> <input class="minaddBtn addadult" id='plusButton' type="button" value="+">
</div> </div>
</div> </div>
@ -406,7 +412,7 @@
var currentTarget = event.currentTarget; var currentTarget = event.currentTarget;
var adultNumberValue = parseInt(adultNumberNode.value); var adultNumberValue = parseInt(adultNumberNode.value);
if (currentTarget.value === 'Premium+Transfer+Dinner') { if (currentTarget.value === 'Premium+Transfer+Dinner') {
ticketPrice = 199; ticketPrice = 179;
} else if (currentTarget.value === 'Standard+Transfer+Dinner') { } else if (currentTarget.value === 'Standard+Transfer+Dinner') {
ticketPrice = 129; ticketPrice = 129;
} else if (currentTarget.value === 'VIP+Transfer+Dinner') { } else if (currentTarget.value === 'VIP+Transfer+Dinner') {

@ -50,10 +50,10 @@
<!--PC头部--> <!--PC头部-->
<header class="headerbar" id="header"> <header class="headerbar" id="header">
<div class="topnavigation">
<div class="p_topnavigation">
<a href="/" class="p_toplogo"> <img src="https://data.asiahighlights.com/pic/logo-ah.png" <a href="/" class="p_toplogo"> <img src="https://data.asiahighlights.com/pic/logo-ah.png"
alt="Asiahighlights logo" class="asiahighlightslogo img-responsive"></a> alt="Asiahighlights logo" class="asiahighlightslogo img-responsive"></a>
<div class="p_topnavigation">
<ul class="pctopnavi"> <ul class="pctopnavi">
<li class="dropdown"><a href="/tours" class="p_topnavilink">Tours</a></li> <li class="dropdown"><a href="/tours" class="p_topnavilink">Tours</a></li>
<li class="dropdown"><a href="/southeast-asia/tours/thailand-cambodia-and-vietnam" <li class="dropdown"><a href="/southeast-asia/tours/thailand-cambodia-and-vietnam"
@ -61,11 +61,14 @@
<div class=" dropdown-content"> <div class=" dropdown-content">
<div class="inspirationinfo"> <div class="inspirationinfo">
<div class="inspirationlist topthings"> <div class="inspirationlist topthings">
<span class="inspirationtitle"><a href="/southeast-asia/tours/thailand-cambodia-and-vietnam">Thailand-Vietnam-Cambodia</a></span> <span class="inspirationtitle"><a
href="/southeast-asia/tours/thailand-cambodia-and-vietnam">Thailand-Vietnam-Cambodia</a></span>
<ul class="inspiration"> <ul class="inspiration">
<li><a href="/southeast-asia/tours/thailand-cambodia-and-vietnam-for-couples">For Couple</a></li> <li><a href="/southeast-asia/tours/thailand-cambodia-and-vietnam-for-couples">For
<li><a href="/southeast-asia/tours/thailand-cambodia-and-vietnam-for-family">For Family</a></li> Couple</a></li>
<li><a href="/southeast-asia/tours/thailand-cambodia-and-vietnam-for-family">For
Family</a></li>
<li><a href="/southeast-asia/tours/12-days">12 Days</a></li> <li><a href="/southeast-asia/tours/12-days">12 Days</a></li>
<li><a href="/southeast-asia/tours/14-days">2 Weeks</a></li> <li><a href="/southeast-asia/tours/14-days">2 Weeks</a></li>
<li><a href="/southeast-asia/tours/21-days">3 Weeks</a></li> <li><a href="/southeast-asia/tours/21-days">3 Weeks</a></li>
@ -75,7 +78,9 @@
</div> </div>
<div class="inspirationlist topthings"> <div class="inspirationlist topthings">
<span class="inspirationtitle"><a href="/southeast-asia/tours/vietnam-and-cambodia">Vietnam & Cambodia</a></span> <span class="inspirationtitle"><a
href="/southeast-asia/tours/vietnam-and-cambodia">Vietnam &
Cambodia</a></span>
<ul class="inspiration"> <ul class="inspiration">
<li><a href="/southeast-asia/tours/vietnam-cambodia-mekong-cruise">2 Weeks for <li><a href="/southeast-asia/tours/vietnam-cambodia-mekong-cruise">2 Weeks for
@ -90,19 +95,27 @@
</div> </div>
<div class="inspirationlist topthings"> <div class="inspirationlist topthings">
<span class="inspirationtitle"><a href="/southeast-asia/tours/thailand-and-vietnam">Vietnam & Thailand</a></span> <span class="inspirationtitle"><a
href="/southeast-asia/tours/thailand-and-vietnam">Vietnam &
Thailand</a></span>
<ul class="inspiration"> <ul class="inspiration">
<li><a href="/southeast-asia/tours/thailand-vietnam-family-tour">Family</a></li> <li><a href="/southeast-asia/tours/thailand-vietnam-family-tour">Family</a></li>
<li><a href="/southeast-asia/tours/classic-vietnam-and-thailand">2 Weeks</a></li> <li><a href="/southeast-asia/tours/classic-vietnam-and-thailand">2 Weeks</a>
<li><a href="/southeast-asia/tours/thailand-vietnam-adventure-tour">3 Weeks</a></li> </li>
<li><a href="/southeast-asia/tours/thailand-vietnam-adventure-tour">3 Weeks</a>
</li>
</ul> </ul>
</div> </div>
<div class="inspirationlist topthings"> <div class="inspirationlist topthings">
<span class="inspirationtitle"><a href="/southeast-asia/tours/thailand-and-cambodia">Thailand & Cambodia</a></span> <span class="inspirationtitle"><a
href="/southeast-asia/tours/thailand-and-cambodia">Thailand &
Cambodia</a></span>
<ul class="inspiration"> <ul class="inspiration">
<li><a href="/southeast-asia/tours/14-day-thailand-cambodia-romantic-tour">2 Weeks for Couple</a></li> <li><a href="/southeast-asia/tours/14-day-thailand-cambodia-romantic-tour">2
<li><a href="/southeast-asia/tours/best-of-thailand-and-cambodia">12 Days</a></li> Weeks for Couple</a></li>
<li><a href="/southeast-asia/tours/best-of-thailand-and-cambodia">12 Days</a>
</li>
</ul> </ul>
</div> </div>
</div> </div>
@ -114,11 +127,13 @@
<div class=" dropdown-content"> <div class=" dropdown-content">
<div class="inspirationinfo"> <div class="inspirationinfo">
<div class="inspirationlist navi_destination"> <div class="inspirationlist navi_destination">
<span class="inspirationtitle"><a href="/southeast-asia/tours">Southeast Asia:</a></span> <span class="inspirationtitle"><a href="/southeast-asia/tours">Southeast
Asia:</a></span>
<ul class="inspiration"> <ul class="inspiration">
<li><a href="/thailand">Thailand</a></li> <li><a href="/thailand">Thailand</a></li>
<li><a href="/thailand/tours/lantern-festival">Thailand Lantern Festival</a></li> <li><a href="/thailand/tours/lantern-festival">Thailand Lantern Festival</a>
</li>
<li><a href="/vietnam">Vietnam</a></li> <li><a href="/vietnam">Vietnam</a></li>
<li><a href="/cambodia">Cambodia</a></li> <li><a href="/cambodia">Cambodia</a></li>
<li><a href="/laos">Laos</a></li> <li><a href="/laos">Laos</a></li>
@ -135,7 +150,8 @@
<ul class="inspiration"> <ul class="inspiration">
<li><a href="/japan">Japan</a></li> <li><a href="/japan">Japan</a></li>
<li><a href="/south-korea">South Korea</a></li> <li><a href="/south-korea">South Korea</a></li>
<li><a href="https://www.chinahighlights.com/tour/" target="_blank">China (HK, Taiwan)</a></li> <li><a href="https://www.chinahighlights.com/tour/" target="_blank">China (HK,
Taiwan)</a></li>
<li><a href="/asia/tours/mongolia-china-and-thailand">Mongolia</a></li> <li><a href="/asia/tours/mongolia-china-and-thailand">Mongolia</a></li>
</ul> </ul>
@ -171,11 +187,15 @@
<li><a href="/reviews" id="all_reviews">Asia Highlights Travel Reviews</a></li> <li><a href="/reviews" id="all_reviews">Asia Highlights Travel Reviews</a></li>
</ul> </ul>
<ul class="inspiration" style="width: 260px;"> <ul class="inspiration" style="width: 260px;">
<li><a href="/reviews/thailand" id="thailand_reviews">Thailand Travel Reviews</a></li> <li><a href="/reviews/thailand" id="thailand_reviews">Thailand Travel
<li><a href="/reviews/vietnam" id="veitnam_reviews">Vietnam Travel Reviews</a></li> Reviews</a></li>
<li><a href="/reviews/cambodia" id="cambodia_reviews">Cambodia Travel Reviews</a></li> <li><a href="/reviews/vietnam" id="veitnam_reviews">Vietnam Travel Reviews</a>
</li>
<li><a href="/reviews/cambodia" id="cambodia_reviews">Cambodia Travel
Reviews</a></li>
<li><a href="/reviews/japan" id="japan_reviews">Japan Travel Reviews</a></li> <li><a href="/reviews/japan" id="japan_reviews">Japan Travel Reviews</a></li>
<li><a href="/reviews/myanmar" id="myanmar_reviews">Myanmar Travel Reviews</a></li> <li><a href="/reviews/myanmar" id="myanmar_reviews">Myanmar Travel Reviews</a>
</li>
<li><a href="/reviews/china" id="china_reviews">China Travel Reviews</a></li> <li><a href="/reviews/china" id="china_reviews">China Travel Reviews</a></li>
</ul> </ul>
</div> </div>
@ -191,7 +211,7 @@
<input type="hidden" value="001281624266240652297:cl1fy1cxepi" name="cx"> <input type="hidden" value="001281624266240652297:cl1fy1cxepi" name="cx">
<input type="hidden" value="FORID:9" name="cof"> <input type="hidden" value="FORID:9" name="cof">
<input type="text" onfocus="this.value = ''" class="strkeys" <input type="text" onfocus="this.value = ''" class="strkeys"
placeholder="Search Asia Highlights" name="q" style="width: 165px;"> placeholder="Search Asia Highlights" name="q">
<input type="image" class="submits" <input type="image" class="submits"
src="https://data.chinahighlights.com/pic/pc-top-navigation-web-search-bg.png" src="https://data.chinahighlights.com/pic/pc-top-navigation-web-search-bg.png"
width="25px"> width="25px">
@ -202,12 +222,13 @@
</li> </li>
</ul> </ul>
</div> </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> <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@-->
@ -219,21 +240,25 @@
<!--@CUSTOM-CONENT@--> <!--@CUSTOM-CONENT@-->
</div> </div>
<div class="right_brand_info"> <div class="right_brand_info">
<h2>Why Asia Highlights (10,000+ reviews & 98.8% 5-star rating)</h2> <h3>Why Asia Highlights (10,000+ reviews & 98.8% 5-star rating)</h3>
<ul> <ul>
<li><strong>Save Your Time:</strong> Less research, more enjoyment!<br> <li class="brand_title">Save Your Time:</li>
Real-time 1V1 expert planning</li> <li>Less research, more enjoyment!</li>
<li><strong>Maximize Your Flexibility: </strong>Personal local guide and ride<br> <li>Real-time 1V1 expert planning</li>
Explore at your own pace <li class="brand_title">Maximize Your Flexibility:</li>
</li> <li>Personal local guide and ride</li>
<li><strong>Celebrate Your Journeys:</strong> Specially-crafted family adventures<br> <li>Explore at your own pace</li>
Celebrate milestones with style!</li> <li class="brand_title">Celebrate Your Journeys:</li>
<li>Specially-crafted family adventures</li>
<li>Celebrate milestones with style!</li>
</ul> </ul>
</div> </div>
<!--@TIPS-RIGHT@--> <!--@TIPS-RIGHT@-->
<!--@TIPS-RIGHT-LIST@--> <!--@TIPS-RIGHT-LIST@-->
<!--@NEWEST_FEEDBACK_10@--> <!--@NEWEST_FEEDBACK_10@-->
<div class="info_tm_button"><a href="/forms/tailormade?product_code=" id="create_my_trip_button_pc">Create my trip</a> <div class="info_tm_button"><a href="/forms/tailormade?product_code=" id="create_my_trip_button_pc">Create
my trip</a>
</div> </div>
</div> </div>
@ -260,20 +285,10 @@ Celebrate milestones with style!</li>
<div class="newsletter_form"> <div class="newsletter_form">
<div class="list_content"> <div class="list_content">
<h2 style="padding-top: 0; text-align: center;">Sign up to Our Newsletter</h2> <h2 style="padding-top: 0; text-align: center;">Sign up to Our Newsletter</h2>
<p style="text-align: center;">Be the first to receive exciting updates, exclusive promotions, and valuable travel tips from our <p style="text-align: center;">Be the first to receive exciting updates, exclusive promotions, and valuable
travel tips from our
team of experts. </p> team of experts. </p>
<form action="https://www.asiahighlights.com/orders/newsletter_save" method="post" id="newsletter_form" name="newsletter_form" novalidate=""> <span class="infotailormade"><a href="/newsletter">Click to sign up</a></span>
<label id="name_area">
<input type="text" name="name" id="newsletter_realname" class="contact_name" placeholder="* Your name">
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_realname_errmsg">Please fill up your name.</div>
</label>
<label id="email_area">
<input type="email" class="safyemail autoemail ui-autocomplete-input contact_email" name="email" id="newsletter_email" autocomplete="off" placeholder="* Email">
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_email_errmsg">Please fill up your email address.</div>
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_email_verify_errmsg">Please verify your email.</div>
</label>
<button id="submit_newsletter" type="button" class="sendInquiry">Inspire Me</button>
</form>
</div> </div>
</div> </div>
@ -285,7 +300,8 @@ Celebrate milestones with style!</li>
<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://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" /></div> alt="Save Your Time" class="img-responsive" /></div>
<h3>Save Your Time</h3> <h3>Save Your Time</h3>
@ -299,7 +315,8 @@ Celebrate milestones with style!</li>
</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://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" /></div>
<h3>Maximize Your Flexibility</h3> <h3>Maximize Your Flexibility</h3>
<ul class="infolist"> <ul class="infolist">
@ -312,7 +329,8 @@ Celebrate milestones with style!</li>
<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://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" /></div>
<h3>Ensure Your Satisfactory</h3> <h3>Ensure Your Satisfactory</h3>
<ul class="infolist"> <ul class="infolist">
@ -324,9 +342,10 @@ Celebrate milestones with style!</li>
</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
alt="Celebrate Your Journey" class="img-responsive" width="100" src="https://images.asiahighlights.com/allpicture/2024/02/03f93f0c74d548bf9ebd55796545c25b_cut_100x100_241.png"
height="100" /></div> 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>
@ -353,8 +372,10 @@ Celebrate milestones with style!</li>
<ul> <ul>
<li><a href="https://www.chinahighlights.com/" target="_blank">China</a></li> <li><a href="https://www.chinahighlights.com/" target="_blank">China</a></li>
<li><a href="https://www.globalhighlights.com/europe" target="_blank">Europe</a></li> <li><a href="https://www.globalhighlights.com/europe" target="_blank">Europe</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank">Middle East </a></li> <li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank">Middle East </a>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African Safari</a></li> </li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African
Safari</a></li>
</ul> </ul>
</div> </div>
@ -366,9 +387,12 @@ Celebrate milestones with style!</li>
<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" width="170" height="121" style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;"> <img src="https://images.asiahighlights.com/allpicture/2024/03/1437fad7aabf4cf297ae5cefce15b241_cut_1191x842_241.png"
width="170" height="121"
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" style="display: block; margin-bottom: 10px;" width="104" height="20"> <img src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"
style="display: block; margin-bottom: 10px;" width="104" height="20">
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>
@ -404,28 +428,44 @@ Celebrate milestones with style!</li>
<div class="aboutusright followus"> <div class="aboutusright followus">
<div class="bottompctitle">Follow Us</div> <div class="bottompctitle">Follow Us</div>
<ul> <ul>
<li style="margin-bottom: 30px;"><a href="https://www.facebook.com/AsiaHighlights/" rel="nofollow" title="Follow us on Facebook" class="fb" target="_blank"> <li style="margin-bottom: 30px;"><a href="https://www.facebook.com/AsiaHighlights/"
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve"> rel="nofollow" title="Follow us on Facebook" class="fb" target="_blank">
<path id="facebook" fill="#ffffff" d="M17.252,11.106V8.65c0-0.922,0.611-1.138,1.041-1.138h2.643V3.459l-3.639-0.015 c-4.041,0-4.961,3.023-4.961,4.961v2.701H10v4.178h2.336v11.823h4.916V15.284h3.316l0.428-4.178H17.252z"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px"
height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30"
xml:space="preserve">
<path id="facebook" fill="#ffffff"
d="M17.252,11.106V8.65c0-0.922,0.611-1.138,1.041-1.138h2.643V3.459l-3.639-0.015 c-4.041,0-4.961,3.023-4.961,4.961v2.701H10v4.178h2.336v11.823h4.916V15.284h3.316l0.428-4.178H17.252z">
</path> </path>
</svg>Facebook</a></li> </svg>Facebook</a></li>
<li style="margin-bottom: 30px;"><a href="https://www.pinterest.com/AsiaHighlights/_saved/" rel="nofollow" title="Share us on Pinterest" target="_blank"><svg id="svg--pinterest" viewBox="-180 -180 850 850"> <li style="margin-bottom: 30px;"><a href="https://www.pinterest.com/AsiaHighlights/_saved/"
<path id="pinterest" fill="#ffffff" d="M430.149,135.248C416.865,39.125,321.076-9.818,218.873,1.642 C138.071,10.701,57.512,76.03,54.168,169.447c-2.037,57.029,14.136,99.801,68.399,111.84 c23.499-41.586-7.569-50.676-12.433-80.802C90.222,77.367,252.16-6.718,336.975,79.313c58.732,59.583,20.033,242.77-74.57,223.71 c-90.621-18.179,44.383-164.005-27.937-192.611c-58.793-23.286-90.013,71.135-62.137,118.072 c-16.355,80.711-51.557,156.709-37.3,257.909c46.207-33.561,61.802-97.734,74.57-164.704 c23.225,14.136,35.659,28.758,65.268,31.038C384.064,361.207,445.136,243.713,430.149,135.248z"></path> rel="nofollow" title="Share us on Pinterest" target="_blank"><svg id="svg--pinterest"
viewBox="-180 -180 850 850">
<path id="pinterest" fill="#ffffff"
d="M430.149,135.248C416.865,39.125,321.076-9.818,218.873,1.642 C138.071,10.701,57.512,76.03,54.168,169.447c-2.037,57.029,14.136,99.801,68.399,111.84 c23.499-41.586-7.569-50.676-12.433-80.802C90.222,77.367,252.16-6.718,336.975,79.313c58.732,59.583,20.033,242.77-74.57,223.71 c-90.621-18.179,44.383-164.005-27.937-192.611c-58.793-23.286-90.013,71.135-62.137,118.072 c-16.355,80.711-51.557,156.709-37.3,257.909c46.207-33.561,61.802-97.734,74.57-164.704 c23.225,14.136,35.659,28.758,65.268,31.038C384.064,361.207,445.136,243.713,430.149,135.248z">
</path>
</svg>Pinterest</a> </svg>Pinterest</a>
</li> </li>
<li style="margin-bottom: 30px;"><a href="https://www.instagram.com/asiahighlights/" rel="nofollow" title="Follow us on Instagram" class="linkin" target="_blank"> <li style="margin-bottom: 30px;"><a href="https://www.instagram.com/asiahighlights/"
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve"> rel="nofollow" title="Follow us on Instagram" class="linkin" target="_blank">
<path id="instagram" fill="#ffffff" d="M22.107,3.415H7.893c-2.469,0-4.479,2.007-4.479,4.477v4.73v9.486c0,2.469,2.01,4.479,4.479,4.479h14.215 c2.469,0,4.479-2.01,4.479-4.479v-9.486v-4.73C26.586,5.421,24.576,3.415,22.107,3.415 M23.393,6.086l0.512-0.004v0.511v3.416 l-3.916,0.014l-0.012-3.928L23.393,6.086z M11.693,12.622c0.742-1.028,1.945-1.7,3.307-1.7s2.564,0.672,3.307,1.7 c0.484,0.67,0.771,1.49,0.771,2.379c0,2.248-1.828,4.078-4.078,4.078c-2.248,0-4.078-1.83-4.078-4.078 C10.922,14.112,11.211,13.292,11.693,12.622 M24.328,22.107c0,1.225-0.994,2.219-2.221,2.219H7.893 c-1.225,0-2.219-0.994-2.219-2.219v-9.486h3.459C8.832,13.356,8.664,14.159,8.664,15c0,3.494,2.842,6.335,6.336,6.335 s6.336-2.842,6.336-6.335c0-0.842-0.17-1.645-0.467-2.379h3.459V22.107z"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px"
height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30"
xml:space="preserve">
<path id="instagram" fill="#ffffff"
d="M22.107,3.415H7.893c-2.469,0-4.479,2.007-4.479,4.477v4.73v9.486c0,2.469,2.01,4.479,4.479,4.479h14.215 c2.469,0,4.479-2.01,4.479-4.479v-9.486v-4.73C26.586,5.421,24.576,3.415,22.107,3.415 M23.393,6.086l0.512-0.004v0.511v3.416 l-3.916,0.014l-0.012-3.928L23.393,6.086z M11.693,12.622c0.742-1.028,1.945-1.7,3.307-1.7s2.564,0.672,3.307,1.7 c0.484,0.67,0.771,1.49,0.771,2.379c0,2.248-1.828,4.078-4.078,4.078c-2.248,0-4.078-1.83-4.078-4.078 C10.922,14.112,11.211,13.292,11.693,12.622 M24.328,22.107c0,1.225-0.994,2.219-2.221,2.219H7.893 c-1.225,0-2.219-0.994-2.219-2.219v-9.486h3.459C8.832,13.356,8.664,14.159,8.664,15c0,3.494,2.842,6.335,6.336,6.335 s6.336-2.842,6.336-6.335c0-0.842-0.17-1.645-0.467-2.379h3.459V22.107z">
</path> </path>
</svg> Instagram </a></li> </svg> Instagram </a></li>
</ul> </ul>
</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." width="1135" height="66"> <img src="https://images.chinahighlights.com/allpicture/2024/02/c858c422f4aa4702ba62eeeccc29156f_cut_1135x66_241.jpg"
alt="China Highlights was featured on these medias." width="1135" height="66">
</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>
</div> </div>
</div> </div>
</div> </div>
@ -442,66 +482,6 @@ Celebrate milestones with style!</li>
</div> </div>
</div> </div>
<!--newsletter表单 JS-->
<script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
var submitbutton = document.getElementById("submit_newsletter");
var newsletterForm = document.getElementById("newsletter_form");
submitbutton.addEventListener('click', function(event) {
var validateResult = validateNewsletterForm();
if (validateResult) {
if (typeof(grecaptcha) === "undefined") {
console.warn('grecaptcha is disabled.');
newsletterForm.submit();
} else {
grecaptcha.enterprise.ready(async () => {
const token = await grecaptcha.enterprise.execute('6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja', {action: 'ADD_TO_CART'});
var el = document.createElement("input");
el.type = "hidden";
el.name = "__grecaptcha_token__";
el.value = token;
newsletterForm.appendChild(el);
newsletterForm.submit();
submitbutton.innerText = "Submitted successfully";
});
}
}
});
});
function validateNewsletterForm() {
var result = true;
var realnameVal = document.getElementById("newsletter_realname").value;
var emailVal = document.getElementById("newsletter_email").value;
var realnameErrEl = document.getElementById("newsletter_realname_errmsg");
var emailErrEl = document.getElementById("newsletter_email_errmsg");
var emailVerifyErrEl = document.getElementById("newsletter_email_verify_errmsg");
realnameErrEl.style.display = 'none';
emailErrEl.style.display = 'none';
emailVerifyErrEl.style.display = 'none';
if (realnameVal === '') {
realnameErrEl.style.display = '';
result = false;
}
if (emailVal === '') {
emailErrEl.style.display = '';
result = false;
} else {
var emailPattern = /^[\w\-\.]+@[\w\-\.]+(\.\w+)+$/;
if (!emailPattern.test(emailVal)) {
emailVerifyErrEl.style.display = '';
result = false;
}
}
return result;
}
</script>
<!--PC底部 结束--> <!--PC底部 结束-->
<!--@PRODUCT-JS@--> <!--@PRODUCT-JS@-->
@ -617,20 +597,5 @@ function validateNewsletterForm() {
<!--@STRUCTURED-DATA-BREADCRUMB-BLOCK@--> <!--@STRUCTURED-DATA-BREADCRUMB-BLOCK@-->
<!--@STRUCTURED-DATA-ARTICLE-BLOCK@--> <!--@STRUCTURED-DATA-ARTICLE-BLOCK@-->
</body> </body>
<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>
$("#newsletter_email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>
</html> </html>

@ -14,7 +14,7 @@
"dateModified": "<?php echo date('Y-m-d\TH:i:s'); ?>", "dateModified": "<?php echo date('Y-m-d\TH:i:s'); ?>",
"author": { "author": {
"@type": "Person", "@type": "Person",
"name": "<?php echo $author->OPI_FirstName; ?>" "name": "<?php echo $author; ?>"
}, },
"publisher": { "publisher": {
"@type": "Organization", "@type": "Organization",

@ -1,22 +1,22 @@
<div class="right_tour"> <div class="right_tour">
<div class="info_ad_title" style="display: flex;">Popular tours</div>
<div class="right_ad_list"> <div class="right_ad_list popular_tours"><div class="info_ad_title" style="display: flex;">Popular tours</div>
<ul> <ul>
<?php foreach ($tips_right_a as $index => $info) {?> <?php foreach ($tips_right_a as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_tours"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_tours"><?php echo $info->ic_title ?></a></li>
<?php }?> <?php }?>
</ul> </ul>
</div> </div>
<div class="info_ad_title" style="display: flex;">Make the most of your time</div>
<div class="right_ad_list"> <div class="right_ad_list make_most_time"><div class="info_ad_title" style="display: flex;">Make the most of your time</div>
<ul> <ul>
<?php foreach ($tips_right_b as $index => $info) {?> <?php foreach ($tips_right_b as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_plan"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_plan"><?php echo $info->ic_title ?></a></li>
<?php }?> <?php }?>
</ul> </ul>
</div> </div>
<div class="info_ad_title" style="display: flex;">Choose the best time to visit</div>
<div class="right_ad_list"> <div class="right_ad_list best_time_visit"><div class="info_ad_title" style="display: flex;">Choose the best time to visit</div>
<ul> <ul>
<?php foreach ($tips_right_c as $index => $info) {?> <?php foreach ($tips_right_c as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_weather"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_weather"><?php echo $info->ic_title ?></a></li>

@ -171,8 +171,6 @@
</div> </div>
<select class="country_code" id="expectedMonth" name="expected_month" style="margin-top: 15px;"> <select class="country_code" id="expectedMonth" name="expected_month" style="margin-top: 15px;">
<option value="" disabled selected>Select your approximate travel date.</option> <option value="" disabled selected>Select your approximate travel date.</option>
<option value="Jan. 2024">Jan. 2024</option>
<option value="Feb. 2024">Feb. 2024</option>
<option value="Mar. 2024">Mar. 2024</option> <option value="Mar. 2024">Mar. 2024</option>
<option value="Apr. 2024">Apr. 2024</option> <option value="Apr. 2024">Apr. 2024</option>
<option value="May. 2024">May. 2024</option> <option value="May. 2024">May. 2024</option>
@ -209,6 +207,10 @@
<option value="Oct. 2026">Oct. 2026</option> <option value="Oct. 2026">Oct. 2026</option>
<option value="Nov. 2026">Nov. 2026</option> <option value="Nov. 2026">Nov. 2026</option>
<option value="Dec. 2026">Dec. 2026</option> <option value="Dec. 2026">Dec. 2026</option>
<option value="Jan. 2027">Jan. 2027</option>
<option value="Feb. 2027">Feb. 2027</option>
<option value="Mar. 2027">Mar. 2027</option>
<option value="Apr. 2027">Apr. 2027</option>
</select> </select>
</div> </div>

@ -177,23 +177,7 @@
<p style="text-align: center;">Be the first to receive exciting updates, exclusive promotions, and valuable <p style="text-align: center;">Be the first to receive exciting updates, exclusive promotions, and valuable
travel tips from our travel tips from our
team of experts. </p> team of experts. </p>
<form action="https://www.asiahighlights.com/orders/newsletter_save" method="post" id="newsletter_form" <span class="infotailormade"><a href="/newsletter">Click to sign up</a></span>
name="newsletter_form" novalidate="">
<label id="name_area">
<input type="text" name="name" id="newsletter_realname" class="contact_name" placeholder="* Your name">
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_realname_errmsg">Please fill
up your name.</div>
</label>
<label id="email_area">
<input type="email" class="safyemail autoemail ui-autocomplete-input contact_email" name="email"
id="newsletter_email" autocomplete="off" placeholder="* Email">
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_email_errmsg">Please fill up
your email address.</div>
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_email_verify_errmsg">Please
verify your email.</div>
</label>
<button id="submit_newsletter" type="button" class="sendInquiry">Inspire Me</button>
</form>
</div> </div>
</div> </div>
<div class="bottom_why_us"> <div class="bottom_why_us">
@ -377,65 +361,6 @@
© 2016-2024 Asia Highlights <br>— Discovery Your Way! © 2016-2024 Asia Highlights <br>— Discovery Your Way!
</div> </div>
<!--newsletter表单 JS-->
<script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
var submitbutton = document.getElementById("submit_newsletter");
var newsletterForm = document.getElementById("newsletter_form");
submitbutton.addEventListener('click', function (event) {
var validateResult = validateNewsletterForm();
if (validateResult) {
if (typeof (grecaptcha) === "undefined") {
console.warn('grecaptcha is disabled.');
newsletterForm.submit();
} else {
grecaptcha.enterprise.ready(async () => {
const token = await grecaptcha.enterprise.execute('6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja', { action: 'ADD_TO_CART' });
var el = document.createElement("input");
el.type = "hidden";
el.name = "__grecaptcha_token__";
el.value = token;
newsletterForm.appendChild(el);
newsletterForm.submit();
submitbutton.innerText = "Submitted successfully";
});
}
}
});
});
function validateNewsletterForm() {
var result = true;
var realnameVal = document.getElementById("newsletter_realname").value;
var emailVal = document.getElementById("newsletter_email").value;
var realnameErrEl = document.getElementById("newsletter_realname_errmsg");
var emailErrEl = document.getElementById("newsletter_email_errmsg");
var emailVerifyErrEl = document.getElementById("newsletter_email_verify_errmsg");
realnameErrEl.style.display = 'none';
emailErrEl.style.display = 'none';
emailVerifyErrEl.style.display = 'none';
if (realnameVal === '') {
realnameErrEl.style.display = '';
result = false;
}
if (emailVal === '') {
emailErrEl.style.display = '';
result = false;
} else {
var emailPattern = /^[\w\-\.]+@[\w\-\.]+(\.\w+)+$/;
if (!emailPattern.test(emailVal)) {
emailVerifyErrEl.style.display = '';
result = false;
}
}
return result;
}
</script>
</footer> </footer>
<!--移动底部 结束--> <!--移动底部 结束-->
@ -564,20 +489,4 @@
<!--@STRUCTURED-DATA-BREADCRUMB-BLOCK@--> <!--@STRUCTURED-DATA-BREADCRUMB-BLOCK@-->
<!--@STRUCTURED-DATA-ARTICLE-BLOCK@--> <!--@STRUCTURED-DATA-ARTICLE-BLOCK@-->
</body> </body>
<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>
$("#newsletter_email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']
});
</script>
</html> </html>

@ -1,9 +1,9 @@
<p style="text-align: center; <p style="text-align: center;
margin-bottom: 20px; margin-bottom: 20px;
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> padding-bottom: 0;" class="city_feedback">Discover real reviews of <a href="/aboutus/highlights-travel-family.htm">Highlights Travel Family</a>'s best-rated service across trusted platforms.</p>
<div style="display: inline-block;"> <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://data.asiahighlights.com/image/forms/ah-ta-2023-certificate.png"
> >
@ -18,7 +18,7 @@ padding-bottom: 0;">Discover real reviews of <a href="/aboutus/highlights-travel
<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://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 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">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>
</div> </div>
<?php }?> <?php }?>

@ -8,7 +8,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -23,7 +23,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -38,7 +38,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -53,7 +53,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -68,7 +68,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -83,7 +83,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -98,7 +98,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -113,7 +113,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -128,7 +128,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -143,7 +143,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -158,7 +158,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -173,7 +173,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -188,48 +188,9 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
<?php }?> <?php }?>
<p><a href="/reviews/hangzhou.htm">Read more Hangzhou travel reviews.</a></p> <p><a href="/reviews/hangzhou.htm">Read more Hangzhou travel reviews.</a></p>
<h3>All Destinations' Feedbacks</h3>
<div class="listtour">
<div>
<ul class="infolist">
<li><a href="/reviews/guilin.htm">Guilin</a></li>
<li><a href="/reviews/beijing.htm">Beijing</a></li>
<li><a href="/reviews/tibet.htm">Tibet</a></li>
<li><a href="/reviews/huangshan.htm">Huangshan</a></li>
</ul>
</div>
<div>
<ul class="infolist">
<li><a href="/reviews/chengdu.htm">Chengdu</a></li>
<li><a href="/reviews/hangzhou.htm">Hangzhou</a></li>
<li><a href="/reviews/taiwan.htm">Taiwan</a></li>
<li><a href="/reviews/huangshan.htm">Huangshan</a></li>
</ul>
</div>
<div>
<ul class="infolist">
<li><a href="/reviews/suzhou.htm">Suzhou</a></li>
<li><a href="/reviews/lijiang.htm">Lijiang</a></li>
<li><a href="/reviews/dali.htm">Dali</a></li>
<li><a href="/reviews/zhangjiajie.htm">Zhangjiajie</a></li>
</ul>
</div>
<div>
<ul class="infolist">
<li><a href="/reviews/xian.htm">Xi'an</a></li>
<li><a href="/reviews/shanghai.htm">Shanghai</a></li>
<li><a href="/reviews/kunming.htm">Kunming</a></li>
<li><a href="/reviews/zhangjiajie.htm">Zhangjiajie</a></li>
</ul>
</div>
</div>

@ -26,7 +26,7 @@
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>

@ -23,7 +23,7 @@
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>

@ -6,6 +6,6 @@
<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://data.chinahighlights.com/image/aboutus/china-highlights-ta-certificate-2022.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://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>
<p><?php echo $feedback_data['content'] ?>&nbsp;<a href="<?php echo $feedback_data['url'] ?>" target="_blank">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>

@ -1,15 +1,7 @@
<div class="topcontent"> <div class="topcontent">
<section> <section>
<?php if (!empty($ic_photo)) { ?>
<div class="infotopimage">
<img src="<?php echo $ic_photo; ?>"
alt="<?php echo !empty($ic_title)?$ic_title:'H1 title Chinahighlights mobile first template'; ?>" class="img-responsive">
<div class="ta_tag">
<img src="https://data.chinahighlights.com/image/forms/ch-2023-trip-advisor-excellent-certificate.png" style="width: 120px !important;height: auto;">
</div>
</div>
<?php } ?>
<div class="infocategory"> <div class="infocategory">
<a href="/" data-count="<?php echo count($breadcrumb_data) ?>">Home</a> <a href="/" data-count="<?php echo count($breadcrumb_data) ?>">Home</a>
<?php foreach ($breadcrumb_data as $index => $item) {?> <?php foreach ($breadcrumb_data as $index => $item) {?>
@ -20,22 +12,8 @@
<!--<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> <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 ($ads_by_google) { ?> <?php if ($ads_by_google) { ?>
<style>
#adsense-head-ads {
height: 427px;
min-height: 427px;
background: url(https://data.viaggio-in-cina.it/information-view/information/img/adsense.gif) center center no-repeat;
}
@media screen and (max-width: 767px) {
#adsense-head-ads {
height: 320px;
min-height: 320px;
}
}
</style>
<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>
<div id="ezoic-pub-ad-placeholder-102"></div>
<?php } ?> <?php } ?>
</section> </section>
</div> </div>

@ -1,6 +1,3 @@
<?php if (!empty($ic_photo)) { ?> <?php if (!empty($ic_photo)) { ?>
<div class="infotopimage">
<img src="<?php echo 'https://images.chinahighlights.com'.$ic_photo; ?>"
alt="<?php echo !empty($ic_title)?$ic_title:'H1 title Chinahighlights mobile first template'; ?>" class="img-responsive">
</div>
<?php } ?> <?php } ?>

@ -322,7 +322,6 @@
experience. <a href="/tour/top-china-tours/" id="updated_news_new_year_2022_pc">Learn experience. <a href="/tour/top-china-tours/" id="updated_news_new_year_2022_pc">Learn
more</a></div> more</a></div>
</div> </div>
<!--@TOP-BANNER@-->
<!--@TOP-VIDEO@--> <!--@TOP-VIDEO@-->
<div class="main_content"> <div class="main_content">
<script src="https://data.chinahighlights.com/js/min.php?f=/js/jquery-1.8.2.min.js,/js/jquery.mailAutoComplete-4.0.min.js&amp;v=20231110"></script> <script src="https://data.chinahighlights.com/js/min.php?f=/js/jquery-1.8.2.min.js,/js/jquery.mailAutoComplete-4.0.min.js&amp;v=20231110"></script>
@ -363,18 +362,8 @@
<h2 style="padding-top: 0; text-align: center;">Sign up to Our Newsletter</h2> <h2 style="padding-top: 0; text-align: center;">Sign up to Our Newsletter</h2>
<p style="text-align: center;">Be the first to receive exciting updates, exclusive promotions, and valuable travel tips from our <p style="text-align: center;">Be the first to receive exciting updates, exclusive promotions, and valuable travel tips from our
team of experts. </p> team of experts. </p>
<form action="https://www.chinahighlights.com/secureforms/newsletter_save" method="post" id="newsletter_form" name="newsletter_form" novalidate=""> <span class="bottom_tourbutton"><a href="/newsletter/">Click to Sign up
<label id="name_area"> </a></span>
<input type="text" name="name" id="newsletter_realname" class="contact_name" placeholder="* Your name">
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_realname_errmsg">Please fill up your name.</div>
</label>
<label id="email_area">
<input type="email" class="safyemail autoemail ui-autocomplete-input contact_email" name="email" id="newsletter_email" autocomplete="off" placeholder="* Email">
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_email_errmsg">Please fill up your email address.</div>
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_email_verify_errmsg">Please verify your email.</div>
</label>
<button id="submit_newsletter" type="button" class="sendInquiry">Inspire Me</button>
</form>
</div> </div>
</div> </div>
<div class="bottom_why_us"> <div class="bottom_why_us">
@ -454,11 +443,6 @@
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan, South Korea </a></li> <li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan, South Korea </a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank"> India, Nepal, Bhutan, and Sri lanka</a></li> <li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank"> India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li> <li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li>
</ul>
</div>
<div class="destination_links">
<ul>
<li><a href="https://www.globalhighlights.com/europe" target="_blank">Europe</a></li> <li><a href="https://www.globalhighlights.com/europe" target="_blank">Europe</a></li>
<li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank">Middle East</a></li> <li><a href="https://www.globalhighlights.com/middle-east/tours" target="_blank">Middle East</a></li>
<li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African Safari</a></li> <li><a href="https://www.globalhighlights.com/african-safari-tours/tours" target="_blank">African Safari</a></li>
@ -573,65 +557,7 @@
} }
})(window, document, 'header'); })(window, document, 'header');
</script> </script>
<!--newsletter表单 JS-->
<script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
var submitbutton = document.getElementById("submit_newsletter");
var newsletterForm = document.getElementById("newsletter_form");
submitbutton.addEventListener('click', function(event) {
var validateResult = validateNewsletterForm();
if (validateResult) {
if (typeof(grecaptcha) === "undefined") {
console.warn('grecaptcha is disabled.');
newsletterForm.submit();
} else {
grecaptcha.enterprise.ready(async () => {
const token = await grecaptcha.enterprise.execute('6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja', {action: 'ADD_TO_CART'});
var el = document.createElement("input");
el.type = "hidden";
el.name = "__grecaptcha_token__";
el.value = token;
newsletterForm.appendChild(el);
newsletterForm.submit();
submitbutton.innerText = "Submitted successfully";
});
}
}
});
});
function validateNewsletterForm() {
var result = true;
var realnameVal = document.getElementById("newsletter_realname").value;
var emailVal = document.getElementById("newsletter_email").value;
var realnameErrEl = document.getElementById("newsletter_realname_errmsg");
var emailErrEl = document.getElementById("newsletter_email_errmsg");
var emailVerifyErrEl = document.getElementById("newsletter_email_verify_errmsg");
realnameErrEl.style.display = 'none';
emailErrEl.style.display = 'none';
emailVerifyErrEl.style.display = 'none';
if (realnameVal === '') {
realnameErrEl.style.display = '';
result = false;
}
if (emailVal === '') {
emailErrEl.style.display = '';
result = false;
} else {
var emailPattern = /^[\w\-\.]+@[\w\-\.]+(\.\w+)+$/;
if (!emailPattern.test(emailVal)) {
emailVerifyErrEl.style.display = '';
result = false;
}
}
return result;
}
</script>
<!--@PRODUCT-JS@--> <!--@PRODUCT-JS@-->
@ -664,16 +590,7 @@ function validateNewsletterForm() {
firstScript.parentNode.insertBefore(asyncScript, firstScript); firstScript.parentNode.insertBefore(asyncScript, firstScript);
}</script> }</script>
<!--@IN-ARTICLE-GOOGLE@--> <!--@IN-ARTICLE-GOOGLE@-->
<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> <script>
$("#newsletter_email").mailAutoComplete({ $("#newsletter_email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com'] email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']

@ -1,22 +1,25 @@
<div class="right_tour"> <div class="right_tour">
<div class="right_ad_list popular_tours">
<div class="info_ad_title" style="display: flex;">Popular tours</div> <div class="info_ad_title" style="display: flex;">Popular tours</div>
<div class="right_ad_list">
<ul> <ul>
<?php foreach ($tips_right_a as $index => $info) {?> <?php foreach ($tips_right_a as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_tours"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_tours"><?php echo $info->ic_title ?></a></li>
<?php }?> <?php }?>
</ul> </ul>
</div> </div>
<div class="right_ad_list make_most_time">
<div class="info_ad_title" style="display: flex;">Make the most of your time</div> <div class="info_ad_title" style="display: flex;">Make the most of your time</div>
<div class="right_ad_list">
<ul> <ul>
<?php foreach ($tips_right_b as $index => $info) {?> <?php foreach ($tips_right_b as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_plan"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_plan"><?php echo $info->ic_title ?></a></li>
<?php }?> <?php }?>
</ul> </ul>
</div> </div>
<div class="right_ad_list best_time_visit">
<div class="info_ad_title" style="display: flex;">Choose the best time to visit</div> <div class="info_ad_title" style="display: flex;">Choose the best time to visit</div>
<div class="right_ad_list">
<ul> <ul>
<?php foreach ($tips_right_c as $index => $info) {?> <?php foreach ($tips_right_c as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_weather"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_weather"><?php echo $info->ic_title ?></a></li>

@ -334,7 +334,6 @@
</nav> </nav>
<!--@TOP-BANNER@-->
<!--@TOP-VIDEO@--> <!--@TOP-VIDEO@-->
<script src="https://data.chinahighlights.com/js/min.php?f=/js/jquery-1.8.2.min.js,/js/jquery.mailAutoComplete-4.0.min.js&amp;v=20231110"></script> <script src="https://data.chinahighlights.com/js/min.php?f=/js/jquery-1.8.2.min.js,/js/jquery.mailAutoComplete-4.0.min.js&amp;v=20231110"></script>
<!--@HEAD_1@--> <!--@HEAD_1@-->
@ -366,18 +365,7 @@
<h2 style="padding-top: 0; text-align: center;">Sign up to Our Newsletter</h2> <h2 style="padding-top: 0; text-align: center;">Sign up to Our Newsletter</h2>
<p style="text-align: center;">Be the first to receive exciting updates, exclusive promotions, and valuable travel tips from our <p style="text-align: center;">Be the first to receive exciting updates, exclusive promotions, and valuable travel tips from our
team of experts. </p> team of experts. </p>
<form action="https://www.chinahighlights.com/secureforms/newsletter_save" method="post" id="newsletter_form" name="newsletter_form" novalidate=""> <span class="tourbutton"><a href="/newsletter/">Click to Sign up</a></span>
<label id="name_area">
<input type="text" name="name" id="newsletter_realname" class="contact_name" placeholder="* Your name">
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_realname_errmsg">Please fill up your name.</div>
</label>
<label id="email_area">
<input type="email" class="safyemail autoemail ui-autocomplete-input contact_email" name="email" id="newsletter_email" autocomplete="off" placeholder="* Email">
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_email_errmsg">Please fill up your email address.</div>
<div style="color: #a31022;display: none" class="requiredArea" id="newsletter_email_verify_errmsg">Please verify your email.</div>
</label>
<button id="submit_newsletter" type="button" class="sendInquiry">Inspire Me</button>
</form>
</div> </div>
</div> </div>
<div class="bottom_why_us"> <div class="bottom_why_us">
@ -560,65 +548,6 @@ Travel Service Co., LTD
<div class="bottomlogo">© 1998-2024 China Highlights <br>— Discovery Your Way!</div> <div class="bottomlogo">© 1998-2024 China Highlights <br>— Discovery Your Way!</div>
</footer> </footer>
<!--newsletter表单 JS-->
<script src="https://www.recaptcha.net/recaptcha/enterprise.js?render=6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
var submitbutton = document.getElementById("submit_newsletter");
var newsletterForm = document.getElementById("newsletter_form");
submitbutton.addEventListener('click', function(event) {
var validateResult = validateNewsletterForm();
if (validateResult) {
if (typeof(grecaptcha) === "undefined") {
console.warn('grecaptcha is disabled.');
newsletterForm.submit();
} else {
grecaptcha.enterprise.ready(async () => {
const token = await grecaptcha.enterprise.execute('6Lf828MhAAAAANNetijCXKwW5ARyhcJ-b1Hhslja', {action: 'ADD_TO_CART'});
var el = document.createElement("input");
el.type = "hidden";
el.name = "__grecaptcha_token__";
el.value = token;
newsletterForm.appendChild(el);
newsletterForm.submit();
submitbutton.innerText = "Submitted successfully";
});
}
}
});
});
function validateNewsletterForm() {
var result = true;
var realnameVal = document.getElementById("newsletter_realname").value;
var emailVal = document.getElementById("newsletter_email").value;
var realnameErrEl = document.getElementById("newsletter_realname_errmsg");
var emailErrEl = document.getElementById("newsletter_email_errmsg");
var emailVerifyErrEl = document.getElementById("newsletter_email_verify_errmsg");
realnameErrEl.style.display = 'none';
emailErrEl.style.display = 'none';
emailVerifyErrEl.style.display = 'none';
if (realnameVal === '') {
realnameErrEl.style.display = '';
result = false;
}
if (emailVal === '') {
emailErrEl.style.display = '';
result = false;
} else {
var emailPattern = /^[\w\-\.]+@[\w\-\.]+(\.\w+)+$/;
if (!emailPattern.test(emailVal)) {
emailVerifyErrEl.style.display = '';
result = false;
}
}
return result;
}
</script>
<script> <script>
(function (w, d, i) { (function (w, d, i) {
var navbar = d.getElementById(i); var navbar = d.getElementById(i);
@ -653,16 +582,7 @@ function validateNewsletterForm() {
<!--@PRODUCT-JS@--> <!--@PRODUCT-JS@-->
<!--@ADDON-JS@--> <!--@ADDON-JS@-->
<!--@IN-ARTICLE-GOOGLE@--> <!--@IN-ARTICLE-GOOGLE@-->
<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> <script>
$("#newsletter_email").mailAutoComplete({ $("#newsletter_email").mailAutoComplete({
email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com'] email: ['gmail.com','outlook.com','yahoo.com','icloud.com','hotmail.com','live.com','aol.com']

@ -20,7 +20,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>

@ -7,7 +7,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -22,7 +22,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -37,7 +37,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -52,7 +52,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -68,7 +68,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>
@ -83,7 +83,7 @@
<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> <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><?php echo $feedback['content'] ?></p> <p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>
</div> </div>
<?php }?> <?php }?>

@ -25,7 +25,7 @@
<p> <p>
<?php echo $feedback['content'] ?> <?php echo $feedback['content'] ?>
</p> </p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">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>

@ -180,8 +180,6 @@
</div> </div>
<select class="country_code" id="expectedMonth" name="expected_month"> <select class="country_code" id="expectedMonth" name="expected_month">
<option value="" disabled selected>Select your approximate travel date.</option> <option value="" disabled selected>Select your approximate travel date.</option>
<option value="Feb. 2024">Feb. 2024</option>
<option value="Mar. 2024">Mar. 2024</option> <option value="Mar. 2024">Mar. 2024</option>
<option value="Apr. 2024">Apr. 2024</option> <option value="Apr. 2024">Apr. 2024</option>
<option value="May. 2024">May. 2024</option> <option value="May. 2024">May. 2024</option>
@ -218,8 +216,10 @@
<option value="Oct. 2026">Oct. 2026</option> <option value="Oct. 2026">Oct. 2026</option>
<option value="Nov. 2026">Nov. 2026</option> <option value="Nov. 2026">Nov. 2026</option>
<option value="Dec. 2026">Dec. 2026</option> <option value="Dec. 2026">Dec. 2026</option>
<option value="Jan. 2017">Jan. 2017</option> <option value="Jan. 2027">Jan. 2027</option>
<option value="Feb. 2017">Feb. 2017</option> <option value="Feb. 2027">Feb. 2027</option>
<option value="Mar. 2027">Mar. 2027</option>
<option value="Apr. 2027">Apr. 2027</option>
</select> </select>
</div> </div>
</div> </div>

@ -67,10 +67,9 @@
<!--PC头部--> <!--PC头部-->
<header class="headerbar" id="header"> <header class="headerbar" id="header">
<div class="topnavigation"> <div class="p_topnavigation">
<a href="/" class="p_toplogo"> <img src="https://data.chinahighlights.com/image/aboutus/logo-gh.png" <a href="/" class="p_toplogo"> <img src="https://data.chinahighlights.com/image/aboutus/logo-gh.png"
alt="Global Highlights logo" class="asiahighlightslogo img-responsive"></a> alt="Global Highlights logo" class="asiahighlightslogo img-responsive"></a>
<div class="p_topnavigation">
<ul class="pctopnavi"> <ul class="pctopnavi">
<li class="dropdown"><a class="p_topnavilink" href="/destinations">Destinations</a> <li class="dropdown"><a class="p_topnavilink" href="/destinations">Destinations</a>
<div class="dropdown-content"> <div class="dropdown-content">
@ -96,8 +95,8 @@
target="_blank">China</a></li> target="_blank">China</a></li>
<li><a href="https://www.asiahighlights.com/cambodia/tours" <li><a href="https://www.asiahighlights.com/cambodia/tours"
target="_blank">Cambodia</a></li> target="_blank">Cambodia</a></li>
<li><a href="https://www.asiahighlights.com/india" <li><a href="https://www.asiahighlights.com/india" target="_blank">India</a>
target="_blank">India</a></li> </li>
<li><a href="https://www.asiahighlights.com/japan/tours" <li><a href="https://www.asiahighlights.com/japan/tours"
target="_blank">Japan</a></li> target="_blank">Japan</a></li>
<li> <a href="https://www.asiahighlights.com/laos/trip-plan" <li> <a href="https://www.asiahighlights.com/laos/trip-plan"
@ -110,12 +109,12 @@
</div> </div>
<div> <div>
<ul class="inspiration"> <ul class="inspiration">
<li><a href="https://www.asiahighlights.com/nepal" <li><a href="https://www.asiahighlights.com/nepal" target="_blank">Nepal</a>
target="_blank">Nepal</a></li> </li>
<li><a href="https://www.asiahighlights.com/asia/plan-a-two-week-itinerary-in-japan-and-south-korea" <li><a href="https://www.asiahighlights.com/asia/plan-a-two-week-itinerary-in-japan-and-south-korea"
target="_blank">South Korea</a></li> target="_blank">South Korea</a></li>
<li><a href="https://www.asiahighlights.com/srilanka" <li><a href="https://www.asiahighlights.com/srilanka" target="_blank">Sri
target="_blank">Sri Lanka</a></li> Lanka</a></li>
<li><a href="https://www.asiahighlights.com/thailand/tours" <li><a href="https://www.asiahighlights.com/thailand/tours"
target="_blank">Thailand</a></li> target="_blank">Thailand</a></li>
@ -172,7 +171,7 @@
<li class="dropdown"><a class="p_topnavilink" href="/itinerary-ideas">Itinerary Ideas</a></li> <li class="dropdown"><a class="p_topnavilink" href="/itinerary-ideas">Itinerary Ideas</a></li>
<li class="dropdown"><a href="/about" class="p_topnavilink">About Us</a></li> <li class="dropdown"><a href="/about" class="p_topnavilink">About Us</a></li>
<li class="dropdown"><a href="/reviews" class="p_topnavilink">Reviews</a></li> <li class="dropdown"><a href="/reviews" class="p_topnavilink">Reviews</a></li>
<li class="dropdown" style="padding-top: 20px;"><a href="/contactus?product_code=" <li class="dropdown" style="padding-top: 20px;text-transform: uppercase;"><a href="/contactus?product_code="
class="p_topnavilink contactbutton">Contact Us</a> class="p_topnavilink contactbutton">Contact Us</a>
</li> </li>
<li class="dropdown"> <li class="dropdown">
@ -180,7 +179,7 @@
<form class="searchtextbox" id="searchbox_44a5ad0e15d0ad976" name="googlesreach" <form class="searchtextbox" id="searchbox_44a5ad0e15d0ad976" name="googlesreach"
action="https://www.globalhighlights.com/sitesearch"> action="https://www.globalhighlights.com/sitesearch">
<input type="text" onfocus="this.value = ''" class="strkeys" <input type="text" onfocus="this.value = ''" class="strkeys"
placeholder="Search Global Highlights" name="q" style="width: 225px;"> placeholder="Search Global Highlights" name="q">
<input type="image" class="submits" <input type="image" class="submits"
src="https://data.chinahighlights.com/pic/pc-top-navigation-web-search-bg.png" src="https://data.chinahighlights.com/pic/pc-top-navigation-web-search-bg.png"
width="25px"> width="25px">
@ -189,7 +188,7 @@
</li> </li>
</ul> </ul>
</div> </div>
</div>
</header> </header>
<!--PC头部 结束--> <!--PC头部 结束-->
@ -204,15 +203,18 @@
</section> </section>
</div> </div>
<div class="right_brand_info"> <div class="right_brand_info">
<h2>Why Global Highlights (10,000+ reviews & 98.8% 5-star rating)</h2> <h3>Why Global Highlights (10,000+ reviews & 98.8% 5-star rating)</h3>
<ul> <ul>
<li><strong>Save Your Time:</strong> Less research, more enjoyment!<br> <li class="brand_title">Save Your Time:</li>
Real-time 1V1 expert planning</li> <li>Less research, more enjoyment!</li>
<li><strong>Maximize Your Flexibility: </strong>Personal local guide and ride<br> <li>Real-time 1V1 expert planning</li>
Explore at your own pace <li class="brand_title">Maximize Your Flexibility:</li>
</li> <li>Personal local guide and ride</li>
<li><strong>Celebrate Your Journeys:</strong> Specially-crafted family adventures<br> <li>Explore at your own pace</li>
Celebrate milestones with style!</li> <li class="brand_title">Celebrate Your Journeys:</li>
<li>Specially-crafted family adventures</li>
<li>Celebrate milestones with style!</li>
</ul> </ul>
</div> </div>
<!--@TIPS-RIGHT@--> <!--@TIPS-RIGHT@-->
@ -266,7 +268,9 @@ Celebrate milestones with style!</li>
<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://images.asiahighlights.com/allpicture/2024/02/2fa10d72338f4942af532a909a486215_cut_100x100_241.png"
alt="Save Your Time" class="img-responsive" width="100" height="100"></div>
<h3>Save Your Time</h3> <h3>Save Your Time</h3>
<ul class="infolist"> <ul class="infolist">
@ -279,7 +283,10 @@ Celebrate milestones with style!</li>
</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://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>
@ -291,7 +298,10 @@ Celebrate milestones with style!</li>
<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://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>Well-trained elite 20% of guides.</li>
@ -302,7 +312,10 @@ Celebrate milestones with style!</li>
</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://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>
@ -330,10 +343,13 @@ Celebrate milestones with style!</li>
<div class="destination_links"> <div class="destination_links">
<ul> <ul>
<li><a href="https://www.chinahighlights.com/" target="_blank">China</a></li> <li><a href="https://www.chinahighlights.com/" target="_blank">China</a></li>
<li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank">Southeast Asia</a></li> <li><a href="https://www.asiahighlights.com/southeast-asia/tours" target="_blank">Southeast Asia</a>
</li>
<li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan, South Korea</a></li> <li><a href="https://www.asiahighlights.com/japan/tours" target="_blank">Japan, South Korea</a></li>
<li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan" target="_blank">India, Nepal, Bhutan, and Sri lanka</a></li> <li><a href="https://www.asiahighlights.com/indian-continent/tours/india-nepal-sri-lanka-bhutan"
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central Asia</a></li> target="_blank">India, Nepal, Bhutan, and Sri lanka</a></li>
<li><a href="https://www.asiahighlights.com/caucasus-central-asia/tours" target="_blank">Central
Asia</a></li>
</ul> </ul>
</div> </div>
@ -343,9 +359,12 @@ Celebrate milestones with style!</li>
<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" width="170" height="121" style="float: left; margin-right: 10px; margin-bottom: 10px; width: 170px; height: 121px;"> <img src="https://images.asiahighlights.com/allpicture/2024/03/4454a0450c304882891c35aea1b8baa9_cut_765x535_241.png"
width="170" height="121"
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" style="display: block; margin-bottom: 10px;" width="104" height="20"> <img src="https://data.asiahighlights.com/pic/trustpilot-new-icon.png"
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
</div> </div>
@ -380,29 +399,44 @@ Celebrate milestones with style!</li>
<div class="aboutusright followus"> <div class="aboutusright followus">
<div class="bottompctitle">Follow Us</div> <div class="bottompctitle">Follow Us</div>
<ul> <ul>
<li style="margin-bottom: 30px; margin-top: 30px;"><a href="https://www.facebook.com/GlobalHighlightsTravel" rel="nofollow" title="Follow us on Facebook" class="fb" target="_blank"> <li style="margin-bottom: 30px; margin-top: 30px;"><a
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve"> href="https://www.facebook.com/GlobalHighlightsTravel" rel="nofollow"
<path id="facebook" fill="#ffffff" d="M17.252,11.106V8.65c0-0.922,0.611-1.138,1.041-1.138h2.643V3.459l-3.639-0.015 c-4.041,0-4.961,3.023-4.961,4.961v2.701H10v4.178h2.336v11.823h4.916V15.284h3.316l0.428-4.178H17.252z"> title="Follow us on Facebook" class="fb" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<path id="facebook" fill="#ffffff"
d="M17.252,11.106V8.65c0-0.922,0.611-1.138,1.041-1.138h2.643V3.459l-3.639-0.015 c-4.041,0-4.961,3.023-4.961,4.961v2.701H10v4.178h2.336v11.823h4.916V15.284h3.316l0.428-4.178H17.252z">
</path> </path>
</svg>Facebook</a></li> </svg>Facebook</a></li>
<li style="margin-bottom: 30px;"><a href="https://twitter.com/GlobalHighligh1" rel="nofollow" title="Share us on Pinterest" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style=" fill: #fff; "> <li style="margin-bottom: 30px;"><a href="https://twitter.com/GlobalHighligh1" rel="nofollow"
<path d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"> title="Share us on Pinterest" target="_blank"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24"
style=" fill: #fff; ">
<path
d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z">
</path> </path>
</svg>Twitter</a> </svg>Twitter</a>
</li> </li>
<li style="margin-bottom: 30px;"><a href="https://www.instagram.com/globalhighlightstour/" rel="nofollow" title="Follow us on Instagram" class="linkin" target="_blank"> <li style="margin-bottom: 30px;"><a href="https://www.instagram.com/globalhighlightstour/"
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve"> rel="nofollow" title="Follow us on Instagram" class="linkin" target="_blank">
<path id="instagram" fill="#ffffff" d="M22.107,3.415H7.893c-2.469,0-4.479,2.007-4.479,4.477v4.73v9.486c0,2.469,2.01,4.479,4.479,4.479h14.215 c2.469,0,4.479-2.01,4.479-4.479v-9.486v-4.73C26.586,5.421,24.576,3.415,22.107,3.415 M23.393,6.086l0.512-0.004v0.511v3.416 l-3.916,0.014l-0.012-3.928L23.393,6.086z M11.693,12.622c0.742-1.028,1.945-1.7,3.307-1.7s2.564,0.672,3.307,1.7 c0.484,0.67,0.771,1.49,0.771,2.379c0,2.248-1.828,4.078-4.078,4.078c-2.248,0-4.078-1.83-4.078-4.078 C10.922,14.112,11.211,13.292,11.693,12.622 M24.328,22.107c0,1.225-0.994,2.219-2.221,2.219H7.893 c-1.225,0-2.219-0.994-2.219-2.219v-9.486h3.459C8.832,13.356,8.664,14.159,8.664,15c0,3.494,2.842,6.335,6.336,6.335 s6.336-2.842,6.336-6.335c0-0.842-0.17-1.645-0.467-2.379h3.459V22.107z"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<path id="instagram" fill="#ffffff"
d="M22.107,3.415H7.893c-2.469,0-4.479,2.007-4.479,4.477v4.73v9.486c0,2.469,2.01,4.479,4.479,4.479h14.215 c2.469,0,4.479-2.01,4.479-4.479v-9.486v-4.73C26.586,5.421,24.576,3.415,22.107,3.415 M23.393,6.086l0.512-0.004v0.511v3.416 l-3.916,0.014l-0.012-3.928L23.393,6.086z M11.693,12.622c0.742-1.028,1.945-1.7,3.307-1.7s2.564,0.672,3.307,1.7 c0.484,0.67,0.771,1.49,0.771,2.379c0,2.248-1.828,4.078-4.078,4.078c-2.248,0-4.078-1.83-4.078-4.078 C10.922,14.112,11.211,13.292,11.693,12.622 M24.328,22.107c0,1.225-0.994,2.219-2.221,2.219H7.893 c-1.225,0-2.219-0.994-2.219-2.219v-9.486h3.459C8.832,13.356,8.664,14.159,8.664,15c0,3.494,2.842,6.335,6.336,6.335 s6.336-2.842,6.336-6.335c0-0.842-0.17-1.645-0.467-2.379h3.459V22.107z">
</path> </path>
</svg> Instagram </a></li> </svg> Instagram </a></li>
</ul> </ul>
</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" alt="Global Highlights was featured on these medias." width="1135" height="66"> <img src="https://images.chinahighlights.com/allpicture/2024/03/8e51ab3cb97a410996c70af3971f3b29_cut_1137x65_241.jpg"
alt="Global Highlights was featured on these medias." width="1135" height="66">
</div> </div>
<p style="margin-top: 20px; padding-bottom: 0; color: #fff;"><strong>Address:</strong> Building 6, Chuangyi Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China</p> <p style="margin-top: 20px; padding-bottom: 0; color: #fff;"><strong>Address:</strong> Building 6, Chuangyi
Business Park, 70 Qilidian Road, Guilin, Guangxi, 541004, China</p>
</div> </div>
</div> </div>
<div class="bottomlogo"> <div class="bottomlogo">

@ -1,22 +1,22 @@
<div class="right_tour"> <div class="right_tour">
<div class="info_ad_title" style="display: flex;">Popular tours</div>
<div class="right_ad_list"> <div class="right_ad_list popular_tours"><div class="info_ad_title" style="display: flex;">Popular tours</div>
<ul> <ul>
<?php foreach ($tips_right_a as $index => $info) {?> <?php foreach ($tips_right_a as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_tours"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_tours"><?php echo $info->ic_title ?></a></li>
<?php }?> <?php }?>
</ul> </ul>
</div> </div>
<div class="info_ad_title" style="display: flex;">Make the most of your time</div>
<div class="right_ad_list"> <div class="right_ad_list make_most_time"><div class="info_ad_title" style="display: flex;">Make the most of your time</div>
<ul> <ul>
<?php foreach ($tips_right_b as $index => $info) {?> <?php foreach ($tips_right_b as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_plan"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_plan"><?php echo $info->ic_title ?></a></li>
<?php }?> <?php }?>
</ul> </ul>
</div> </div>
<div class="info_ad_title" style="display: flex;">Choose the best time to visit</div>
<div class="right_ad_list"> <div class="right_ad_list best_time_visit"><div class="info_ad_title" style="display: flex;">Choose the best time to visit</div>
<ul> <ul>
<?php foreach ($tips_right_c as $index => $info) {?> <?php foreach ($tips_right_c as $index => $info) {?>
<li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_weather"><?php echo $info->ic_title ?></a></li> <li><a href="<?php echo $info->ic_url ?>" id="right_ad_list_weather"><?php echo $info->ic_title ?></a></li>

@ -171,8 +171,6 @@
<select class="country_code" id="expectedMonth" name="expected_month"> <select class="country_code" id="expectedMonth" name="expected_month">
<option value="" disabled selected>Select your approximate travel date.</option> <option value="" disabled selected>Select your approximate travel date.</option>
<option value="Feb. 2024">Feb. 2024</option>
<option value="Mar. 2024">Mar. 2024</option> <option value="Mar. 2024">Mar. 2024</option>
<option value="Apr. 2024">Apr. 2024</option> <option value="Apr. 2024">Apr. 2024</option>
<option value="May. 2024">May. 2024</option> <option value="May. 2024">May. 2024</option>
@ -209,8 +207,10 @@
<option value="Oct. 2026">Oct. 2026</option> <option value="Oct. 2026">Oct. 2026</option>
<option value="Nov. 2026">Nov. 2026</option> <option value="Nov. 2026">Nov. 2026</option>
<option value="Dec. 2026">Dec. 2026</option> <option value="Dec. 2026">Dec. 2026</option>
<option value="Jan. 2017">Jan. 2017</option> <option value="Jan. 2027">Jan. 2027</option>
<option value="Feb. 2017">Feb. 2017</option> <option value="Feb. 2027">Feb. 2027</option>
<option value="Mar. 2027">Mar. 2027</option>
<option value="Apr. 2027">Apr. 2027</option>
</select> </select>
</div> </div>
</div> </div>

Loading…
Cancel
Save