","summary":"

Tour du lịch Ngũ Hành Sơn - Hội An 1 ngày sẽ đưa du khách đến với những thiên đường cảnh đẹp của miền Trung, Ngũ Hành Sơn và Phố Cổ Hội An. Gọi Ms. Yến 0977533705

","template_layout":null,"available":true,"tags":[],"price":480000.0000,"price_min":480000.0000,"price_max":480000.0000,"price_varies":false,"compare_at_price":0,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":5709462,"barcode":null,"sku":"DLGD-04","title":"Default Title","options":["Default Title"],"option1":"Default Title","option2":null,"option3":null,"available":true,"taxable":false,"price":480000.0000,"compare_at_price":null,"inventory_management":"","inventory_policy":"deny","inventory_quantity":0,"weight_unit":"g","weight":0,"requires_shipping":true,"image":{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"}}],"featured_image":{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"},"images":[{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"}],"options":["Title"],"created_on":"2016-08-12T10:57:06","modified_on":"2022-01-12T20:51:37","published_on":"2016-08-12T10:44:00"}; // $current_product object, ko phải string... if($current_product != null && arrPro[$current_product.id] == null) // null / undefined { arrPro[$current_product.id] = $current_product; sessionStorage.setItem('products_viewed', JSON.stringify( arrPro )); // // saving current index var jsonProIndex = sessionStorage.getItem('products_viewed_indexing'); var arrProIndex = []; if( jsonProIndex != null ) arrProIndex = JSON.parse( jsonProIndex ); arrProIndex.push($current_product.id); sessionStorage.setItem('products_viewed_indexing', JSON.stringify( arrProIndex )); // } var jsonProIndex = sessionStorage.getItem('products_viewed_indexing'); var jsonProducts = sessionStorage.getItem('products_viewed'); var arrProIndex = []; var $strHTML = ''; var $countViewedItem = 0; var $intMaxViewedItems = ''; if($intMaxViewedItems == '') $intMaxViewedItems = 3; else $intMaxViewedItems = parseInt($intMaxViewedItems); if(jsonProIndex != null & jsonProducts != null & $current_product != null ) { //parse indexing, products... arrProIndex = JSON.parse(jsonProIndex); arrPro = JSON.parse( jsonProducts ); // assign count_items = 0; for (i=0; i'; var compare_price = Bizweb.formatMoney(product_viewed.compare_at_price, "{{amount_no_decimals_with_comma_separator}}₫") + ''; var old_price = ''; if (product_viewed.price < product_viewed.compare_at_price) { old_price = ''+compare_price+''; } // for (img_idx ; i' +' ' +'' +'' +'
' +'
' +'

'+ product_viewed.name +'

' +'
' +'' +'
' // console.log($strHTML); $countViewedItem = $countViewedItem + 1; } // } // endfor: arrProIndex } // endif: jsonProIndex return $strHTML; }// get_vied_items_html /*** add to cart ***/ // <<<<<< product BEGIN function refreshProductSelections($tagSelectOption0, $option0, $tagSelectOption1 , $option1, $tagSelectOption2, $option2) { if($option0 != null && $option0 != '') { //change option 0 $($tagSelectOption0 + ' option[value="'+$option0+'"]').prop('selected', true); // option-0 => Shape... okok $($tagSelectOption0).change(); } if($option1 != null && $option1 != '') { //change option 1 $($tagSelectOption1 + ' option[value="'+$option1+'"]').prop('selected', true); // option-1 => Color... okok $($tagSelectOption1).change(); } if($option2 != null && $option2 != '') { //change option 2 $($tagSelectOption2 + ' option[value="'+$option2+'"]').prop('selected', true); // option-1 => Color... okok $($tagSelectOption2).change(); } } function update_variant(variant, $tagPrice, $tagPriceCompare, $tagAddToCart, $tagProductSection) { //console.log(Bizweb.formatMoney(variant.price, "{{amount_no_decimals_with_comma_separator}}₫")); var $unit_price = 0; var $unit_price_compare = 0; if(variant != null && variant.available==true ) { $unit_price = variant.price; //console.log(Bizweb.formatMoney(variant.price, "{{amount_no_decimals_with_comma_separator}}₫")); if(variant.price < variant.compare_at_price){ $unit_price_compare = variant.compare_at_price; //show onsale label $($tagProductSection).find('.sticker-sale').removeClass('hidden'); } else{ //hide onsale label... nono: find matching ids: ('[id^="ProductDetails"]') $($tagProductSection).find('.sticker-sale').addClass('hidden'); } $($tagAddToCart).html('Thêm vào giỏ'); $($tagAddToCart).removeAttr('disabled'); } else{ $($tagAddToCart).html('Hết hàng'); $($tagAddToCart).prop('disabled', true); } var $strUnitPrice = Bizweb.formatMoney($unit_price,"{{amount_no_decimals_with_comma_separator}}₫"); // '' shop.money_format //console.log($strUnitPrice); var $strUnitPriceCompare = Bizweb.formatMoney($unit_price_compare,"{{amount_no_decimals_with_comma_separator}}₫"); // '' shop.money_format $($tagPrice).html($strUnitPrice); if($unit_price_compare > 0) { $($tagPriceCompare).html($strUnitPriceCompare); } else $($tagPriceCompare).html(''); $($tagProductSection).find('.unit_price_not_formated').val($unit_price); // update_total(); } //ajax: add to cart function addItem(form_id, fly_img) { $.ajax({ type: 'POST', url: '/cart/add.js', dataType: 'json', async: false, data: $('#'+form_id).serialize(), success: onSuccess(fly_img, '#'+form_id), error: onError, cache: false }); } onSuccess = function(fly_img, form_id) { flyToElement($(fly_img), $('.top-cart-block')); //update top cart: qty, total price var $product_page = $(form_id).parents('[class^="product-page"]'); var quantity = parseInt($product_page.find('[name="quantity"]').val(), 10) || 1; var $item_qty_new = 0; var $item_price_new = 0; var $item_price_increase = 0; var $boUpdated = false; //insert "no_item" html if($('.top-cart-block .top-cart-content .top-cart-item').size() <= 0) { $('.top-cart-block .top-cart-content').html(top_cart_no_item); } //update items $('.top-cart-block .top-cart-content .top-cart-item').each(function(){ if($(this).find('.item_id').val() == $product_page.find('[name="variantId"]').val() ){ $item_qty_new = parseInt($(this).find('.item_qty').val()) + quantity ; $item_price_single = parseFloat($(this).find('.item_unit_price_not_formated').val()); $item_price_new = $item_qty_new * $item_price_single; $item_price_increase = quantity * parseFloat($(this).find('.item_unit_price_not_formated').val()); $(this).find('.item_qty').val($item_qty_new); // !!! $(this).find('.top-cart-item-quantity').html('x ' + $item_qty_new); $(this).find('.top-cart-item-price').html(Bizweb.formatMoney($item_price_new,"{{amount_no_decimals_with_comma_separator}}₫")); // '' shop.money_format $boUpdated = true; // updated item } }); if($boUpdated == false){ // current item is not existed!!! var $proURL = $product_page.find('.product_url').val(); var $proTitle = $product_page.find('.product_title_hd').val(); var $proUnitPrice = parseFloat($product_page.find('.unit_price_not_formated').val()); var $strNewItem = '
' + ' ' + ' ' + ' ' + '
' + ' '+ $proTitle +'' + '
' + '
' //+ ' x'+ quantity +'' + '' + $proTitle + '' + ''+ Bizweb.formatMoney(($proUnitPrice * quantity),"{{amount_no_decimals_with_comma_separator}}₫") + '' + 'x '+ quantity +'' + '
' + '
'; $('.top-cart-block .top-cart-content .top-cart-items').append($strNewItem); $item_price_increase = $proUnitPrice * quantity; } //check is emptiness... check_topcart_empty(); //update total var $quantity_new = parseInt($('.top-cart-block #top-cart-trigger span').text()) + quantity; var $price_new = parseFloat($('.top-cart-block .top_cart_total_price_not_format').val()) + $item_price_increase; $('.top-cart-block .top_cart_total_price_not_format').val($price_new); // !!! $('.top-cart-block #top-cart-trigger span').html($quantity_new); $('.top-cart-block .top-checkout-price').html(Bizweb.formatMoney($price_new,"{{amount_no_decimals_with_comma_separator}}₫")); $('.cart_total').html(Bizweb.formatMoney($price_new,"{{amount_no_decimals_with_comma_separator}}₫")); }; var onError = function() { } var top_cart_empty = '
Chưa có sản phẩm trong giỏ!
'; var top_cart_no_item = ''; function check_topcart_empty(){ //Bạn chưa mua sản phẩm nào! if($('.top-cart-block .top-cart-content .top-cart-item').size() <= 0) { top_cart_no_item = $('.top-cart-block .top-cart-content').html(); $('.top-cart-block .top-cart-content').html(top_cart_empty); $('.top-cart-block .top-cart-content').css('width', '200px'); } else{ //remove width, okok!!! $('.top-cart-block .top-cart-content').css('width', ''); } } jQuery(document).ready(function($){ //select first size&color. //second item: $($("#colorPicker option").get(1))... $("#sizePicker option:first").attr('selected', 'selected'); $("#colorPicker option:first").attr('selected', 'selected'); // function: choose size $('#option-0 select').change(function(){ var $size = $(this).val(); var $color = $('#option-1 select').val(); var $material = $('#option-2 select').val(); var $tagSelectOption0 = '#product-select-option-0'; var $tagSelectOption1 = '#product-select-option-1'; var $tagSelectOption2 = '#product-select-option-2'; refreshProductSelections($tagSelectOption0, $size, $tagSelectOption1 , $color,$tagSelectOption2 , $material); }); // function: choose color $('#option-1 select').change(function(){ var $size = $('#option-0 select').val(); var $color = $(this).val(); var $material = $('#option-2 select').val(); var $tagSelectOption0 = '#product-select-option-0'; var $tagSelectOption1 = '#product-select-option-1'; var $tagSelectOption2 = '#product-select-option-2'; refreshProductSelections($tagSelectOption0, $size, $tagSelectOption1 , $color,$tagSelectOption2 , $material); }); // function: choose material $('#option-2 select').change(function(){ var $size = $('#option-0 select').val(); var $color = $('#option-1 select').val(); var $material = $(this).val(); var $tagSelectOption0 = '#product-select-option-0'; var $tagSelectOption1 = '#product-select-option-1'; var $tagSelectOption2 = '#product-select-option-2'; refreshProductSelections($tagSelectOption0, $size, $tagSelectOption1 , $color,$tagSelectOption2 , $material); }); //second item: $($("#colorPicker option").get(1))... $("#option-0 select option:first").attr('selected', 'selected'); $("#option-1 select option:first").attr('selected', 'selected'); $("#option-2 select option:first").attr('selected', 'selected'); var $size = $("#option-0 select option:first").val(); var $color = $("#option-1 select option:first").val(); var $material = $("#option-2 select option:first").val(); var $tagSelectOption0 = '#product-select-option-0'; var $tagSelectOption1 = '#product-select-option-1'; var $tagSelectOption2 = '#product-select-option-2'; refreshProductSelections($tagSelectOption0, $size, $tagSelectOption1 , $color,$tagSelectOption2 , $material); //add to cart $("#addtocart").on('click', function(e) { //.click(function(e){ // e.preventDefault(); addItem('ProductDetailsForm', '.product-main-image .slider-wrap img'); }); //add to cart for QuickView $("#addtocartQV").on('click', function(e) { //.click(function(e){ // e.preventDefault(); addItem('ProductDetailsFormQV', '#product-pop-up .product-main-image img'); }); //check empty for top-cart... check_topcart_empty(); //change qty... $('.product-quantity input.quantity').on('change', function(){ var $qty = parseInt($(this).val()); if($qty <= 0){ $(this).parents('[class^="product-page"]').find('[id^="addtocart"]').addClass('disabled'); } else{ $(this).parents('[class^="product-page"]').find('[id^="addtocart"]').removeClass('disabled'); } }); }); // >>>>>> product END /*** buy now ***/ var buynow = function(form) { $.ajax({ type: 'POST', url: '/cart/add.js', data: jQuery('#'+form).serialize(), dataType: 'json', success: function() { window.location = '/cart'; }, error: function(XMLHttpRequest, textStatus) { Haravan.onError(XMLHttpRequest, textStatus); } }) } $(document).ready(function() { $('.buynow').on('click', function(e) { e.preventDefault(); var form = $(this).closest('form').attr('id'); buynow(form); }); }) /*** end buy now ***/

","summary":"

Tour du lịch Ngũ Hành Sơn - Hội An 1 ngày sẽ đưa du khách đến với những thiên đường cảnh đẹp của miền Trung, Ngũ Hành Sơn và Phố Cổ Hội An. Gọi Ms. Yến 0977533705

","template_layout":null,"available":true,"tags":[],"price":480000.0000,"price_min":480000.0000,"price_max":480000.0000,"price_varies":false,"compare_at_price":0,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":5709462,"barcode":null,"sku":"DLGD-04","title":"Default Title","options":["Default Title"],"option1":"Default Title","option2":null,"option3":null,"available":true,"taxable":false,"price":480000.0000,"compare_at_price":null,"inventory_management":"","inventory_policy":"deny","inventory_quantity":0,"weight_unit":"g","weight":0,"requires_shipping":true,"image":{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"}}],"featured_image":{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"},"images":[{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"}],"options":["Title"],"created_on":"2016-08-12T10:57:06","modified_on":"2022-01-12T20:51:37","published_on":"2016-08-12T10:44:00"}; var strHTML = get_viewed_items_html(current_product); //console.log(current_product); });

Du Lịch Ngũ Hành Sơn - Hội An 1 Ngày

480.000₫ Mã tour: DLGD-04

","summary":"

Tour du lịch Ngũ Hành Sơn - Hội An 1 ngày sẽ đưa du khách đến với những thiên đường cảnh đẹp của miền Trung, Ngũ Hành Sơn và Phố Cổ Hội An. Gọi Ms. Yến 0977533705

","template_layout":null,"available":true,"tags":[],"price":480000.0000,"price_min":480000.0000,"price_max":480000.0000,"price_varies":false,"compare_at_price":0,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":5709462,"barcode":null,"sku":"DLGD-04","title":"Default Title","options":["Default Title"],"option1":"Default Title","option2":null,"option3":null,"available":true,"taxable":false,"price":480000.0000,"compare_at_price":null,"inventory_management":"","inventory_policy":"deny","inventory_quantity":0,"weight_unit":"g","weight":0,"requires_shipping":true,"image":{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"}}],"featured_image":{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"},"images":[{"src":"https://bizweb.dktcdn.net/100/115/245/products/tour-ngu-hanh-son-hoi-an-1-ngay-handetour.jpg?v=1472550194207"}],"options":["Title"],"created_on":"2016-08-12T10:57:06","modified_on":"2022-01-12T20:51:37","published_on":"2016-08-12T10:44:00"};
-->

 DU LỊCH NGŨ HÀNH SƠN - HỘI AN 1 NGÀY

HOTLINE ĐẶT TOUR: 0977 533 705

   Tour du lịch Ngũ Hành Sơn - Hội An 1 ngày  sẽ đưa du khách đến với những thiên đường cảnh đẹp của miền Trung, Ngũ Hành Sơn với năm ngọn núi được nằm theo hệ Ngũ Hành là một kiệt tác của thiên nhiên ban tặng cho thành phố Đà Nẵng. Nhìn từ trên cao Ngũ Hành Sơn giống như một bàn tay của Trời ấn định nơi đây là vùng đất thiêng. Tại đây trên ngon Thuỷ Sơn còn có hai ngôi Chùa cổ Tam Thai, Linh Ứng. Hội An đã có một thời nổi tiếng với tên gọi Faifo mà các thương nhân Nhật Bản, Trung Quốc, Bồ Ðào Nha, Italia v.v.. đã biết đến từ thế kỷ 16, 17. Hội  An có những dãy phố cổ gần như nguyên vẹn, đó là loại nhà hình ống xuyên suốt từ phố nọ sang phố kia. Trong đó có một dãy phố nằm sát ngay bờ sông Hội An. Nhà ở đây toàn bằng gỗ quý, trong nhà treo hoành phi, câu đối, cột nhà trạm trổ hoa văn rất cầu kỳ... Khu phố cổ đã được UNESCO công nhận là Di sản văn hoá thế giới.

Mời quý khách tham khảo lịch trình tour du lịch Ngũ Hành Sơn - Hội An 1 ngày cùng Handetour:

TOUR DU LỊCH NGŨ HÀNH SƠN - HỘI AN 1 NGÀY

Lịch trình du lịch Cù Lao Chàm 1 ngày: bến Cửa Đại - Chùa Hải Tạng - Lặn biển Cù Lao Chàm - (Ăn trưa)

15h30: Đón quý khách tại KHÁCH SẠN trung tâm thành phố. Bắt đầu hành trình của tour du lịch Ngũ Hành Sơn - Hội An 1 ngày.

16h15: Handetour đưa quý khách đi thăm làng nghề điêu khắc đá Non Nước. Chinh phục Ngũ Hành Sơn, khám phá vẻ đẹp của các hang động, viếng chùa Linh Ứng, Tam Thai.

Ngũ Hành Sơn - Tour du lịch Ngũ Hành Sơn - Hội An 1 ngày

17h30: Handetour cùng quý khách tiếp tục khởi hành du lịch Hội An.

18h00: Ăn tối tại Hội An. Ở Hội An có rất nhiều đặc sản nối tiếng như Cao lầu, Cơm Gà, Bánh mỳ, Hoành thánh....

Cao Lầu Hội An - Du lịch Handetour

19h30: Bách bộ tham quan mua sắm tại Phố cổ.

Hội An - Tour du lịch Ngũ Hành Sơn - Hội An 1 ngày

21h00: Handetour đưa quý khách lên xe về lại thành phố Đà Nẵng. Kết thúc tour Du lịch Ngũ Hành Sơn - Hội An 1 ngày !

 

GỌI NGAY:  0977 533 705 ĐỂ ĐẶT TOUR

(hoặc click nút gọi điện  du lịch đà nẵng 4 ngày 3 đêm trên màn hình điện thoại)

Nguyễn Hải Yến

Trưởng Phòng Nội Địa

CÔNG TY DU LỊCH HANDETOUR

ĐC: Phòng 1501, Tòa nhà 101 Láng Hạ, Đống Đa, Hà Nội

ĐT: 04 36416359 - DĐ: 0977533705

Skype: haiyenhandetour

Email: noidia@handetour.com

Website: http://www.handetour.vn/

FanPage: https://www.facebook.com/handetour.vn

 

Gói Tour Du Lịch Ngũ Hành Sơn - Hội An 1 ngày bao gồm:

*    Xe vận chuyển tốt đời mới phục vụ theo chương trình. (Xe16c Ford 2010-2013 / Xe 30, 35 chỗ County 2009-2013, Samco 2014, Aero Town 2010-2013 / Xe 45 chỗ Univer Noble, Hi Class)

*    Vé các điểm tham quan

*    Ăn tối theo chương trình

*    Hướng dẫn viên tiếng Việt phục vụ tận tình

Giá Tour Du Lịch Ngũ Hành Sơn - Hội An 1 ngày không bao gồm:

Nước uống trong bữa ăn và các chi phí phát sinh khác.

Ghi Chú về Tour Du Lịch Ngũ Hành Sơn - Hội An 1 ngày:

Trẻ em dưới 5 tuổi: miễn phí
* Trẻ em 5-10 tuổi: 75% giá Tour

1. Giá ngày lễ tết tăng thêm 20%

* Lễ Tết Âm Lịch

* Tết Dương Lịch 

* Lễ Hội Pháo Hoa & Ngày quốc tế Lao Động

2. Giá cho khách nước ngoài đã bao gồm HDV tiếng anh và vé tham quan cho khách nước ngoài.

3. Giá trên đón tiễn trong khu vực thành phố Đà Nẵng, nếu đón tại khu vực và khách sạn dọc biển ( Furama, Fusion Maia, Crown, Sandy beach… phụ thu thêm tiền xe tùy theo từng nhóm khách).

4. Giá sẽ thay đổi theo giá vé tham quan.

 

Viết bình luận tại đây