Giahungfoods.vn tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * See: https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) ); add_theme_support( "woocommerce" ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat' ) ); $color_scheme = greenmart_tbay_get_color_scheme(); $default_color = trim( $color_scheme[0], '#' ); // Setup the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'greenmart_custom_background_args', array( 'default-color' => $default_color, 'default-attachment' => 'fixed', ) ) ); greenmart_tbay_get_load_plugins(); greenmart_tbay_private_get_load_plugins(); } endif; // greenmart_tbay_setup add_action( 'after_setup_theme', 'greenmart_tbay_setup' ); /* * Remove config default media * */ if(greenmart_tbay_get_global_config('config_media',false)) { remove_action( 'after_setup_theme', 'theme_setup_size_image' ); } function greenmart_tbay_include_files($path) { $files = glob( $path ); if ( ! empty( $files ) ) { foreach ( $files as $file ) { include $file; } } } /** * Enqueue scripts and styles. * * @since greenmart 2.1.6 */ function greenmart_tbay_scripts() { $menu_option = apply_filters( 'greenmart_menu_mobile_option', 10,2 ); $suffix = (greenmart_tbay_get_config('minified_js', false)) ? '.min' : GREENMART_MIN_JS; //load font awesome wp_register_style( 'font-awesome', GREENMART_STYLES . '/font-awesome.css', array(), '4.5.0' ); //load font custom icon tbay wp_register_style( 'font-tbay', GREENMART_STYLES . '/font-tbay-custom.css', array(), '1.0.0' ); //load font simple-line-icons wp_register_style( 'simple-line-icons', GREENMART_STYLES . '/simple-line-icons.css', array(), '2.4.0' ); //load font material-design-iconic-font wp_register_style( 'material-design-iconic-font', GREENMART_STYLES . '/material-design-iconic-font.min.css', array(), '2.2.0' ); //load font ico-font wp_enqueue_style( 'icofont', GREENMART_STYLES . '/icofont.css', array(), '1.0.1' ); //load font themify-icons wp_register_style( 'themify-icons', GREENMART_STYLES . '/themify-icons.css', array(), '4.8.1' ); // load animate version 3.5.0 wp_enqueue_style( 'animate', GREENMART_STYLES . '/animate.css', array(), '3.5.0' ); $skin = greenmart_tbay_get_theme(); // Load our main stylesheet. if( is_rtl() ){ if ( $skin != 'default' && $skin ) { $css_path = GREENMART_STYLES_SKINS . '/'.$skin.'/template.rtl.css'; } else { $css_path = GREENMART_STYLES . '/template.rtl.css'; } } else{ if ( $skin != 'default' && $skin ) { $css_path = GREENMART_STYLES_SKINS . '/'.$skin.'/template.css'; } else { $css_path = GREENMART_STYLES . '/template.css'; } } wp_enqueue_style( 'greenmart-template', $css_path, array('font-awesome', 'font-tbay', 'simple-line-icons', 'material-design-iconic-font', 'themify-icons'), GREENMART_THEME_VERSION ); $footer_style = greenmart_tbay_print_style_footer(); if ( !empty($footer_style) ) { wp_add_inline_style( 'greenmart-template', $footer_style ); } $custom_style = greenmart_tbay_custom_styles(); if ( !empty($custom_style) ) { wp_add_inline_style( 'greenmart-template', $custom_style ); } // load Sumoselect version 1.0.0 wp_enqueue_style('sumoselect', GREENMART_STYLES . '/sumoselect.css', array(), '1.0.0', 'all'); // Add js Sumoselect version 3.0.2 wp_enqueue_script('jquery-sumoselect', GREENMART_SCRIPTS . '/jquery.sumoselect' . $suffix . '.js', array(), '3.0.2', TRUE); // load fancybox wp_enqueue_style( 'jquery-fancybox', GREENMART_STYLES . '/jquery.fancybox.css', array(), '3.2.0' ); wp_enqueue_script( 'jquery-fancybox', GREENMART_SCRIPTS . '/jquery.fancybox' . $suffix . '.js', array( 'jquery' ), '20150315', true ); wp_enqueue_script( 'greenmart-skip-link-fix', GREENMART_SCRIPTS . '/greenmart-skip-link-fix' . $suffix . '.js', array(), '20141010', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_dequeue_script('revmin'); wp_enqueue_script( 'revmin'); /*mmenu menu*/ if( $menu_option == 'smart_menu' ){ wp_enqueue_script( 'jquery-mmenu', GREENMART_SCRIPTS . '/jquery.mmenu' . $suffix . '.js', array( 'jquery' ), '7.0.5', true ); } wp_register_script( 'jquery-instagramfeed', GREENMART_SCRIPTS . '/jquery.instagramfeed' . $suffix . '.js', array( 'jquery' ),'1.1.3', true ); wp_register_script( 'jquery-timeago', GREENMART_SCRIPTS . '/jquery.timeago' . $suffix . '.js', array( 'jquery' ),'1.6.7', true ); /*Treeview menu*/ wp_enqueue_style( 'jquery-treeview', GREENMART_STYLES . '/jquery.treeview.css', array(), '1.0.0' ); wp_enqueue_script( 'jquery-treeview', GREENMART_SCRIPTS . '/jquery.treeview' . $suffix . '.js', array( 'jquery' ), '20150330', true ); wp_enqueue_script( 'bootstrap', GREENMART_SCRIPTS . '/bootstrap' . $suffix . '.js', array( 'jquery' ), '20150330', true ); wp_dequeue_script('wpb_composer_front_js'); wp_enqueue_script( 'wpb_composer_front_js'); wp_enqueue_script( 'owl-carousel', GREENMART_SCRIPTS . '/owl.carousel' . $suffix . '.js', array( 'jquery' ), '2.3.4', true ); wp_enqueue_script( 'greenmart-woocommerce', GREENMART_SCRIPTS . '/woocommerce' . $suffix . '.js', array( 'jquery' ), GREENMART_THEME_VERSION, true ); wp_enqueue_script( 'jquery-countdowntimer', GREENMART_SCRIPTS . '/jquery.countdownTimer' . $suffix . '.js', array( 'jquery' ), '1.0.0', true ); wp_register_script( 'greenmart-script', GREENMART_SCRIPTS . '/functions' . $suffix . '.js', array( 'jquery' ), GREENMART_THEME_VERSION, true ); wp_localize_script( 'greenmart-script', 'greenmart_ajax', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ))); wp_register_script( 'greenmart-skins-script', GREENMART_SCRIPTS_SKINS . '/'.$skin.'/functions' . $suffix . '.js', array( 'greenmart-script' ), GREENMART_THEME_VERSION, true ); wp_enqueue_script( 'greenmart-skins-script' ); if ( greenmart_tbay_get_config('header_js') != "" ) { wp_add_inline_script( 'jquery-core', greenmart_tbay_get_config('header_js') ); } wp_enqueue_style( 'greenmart-style', GREENMART_STYLES . '/style.css', GREENMART_THEME_VERSION, '1.0' ); $translate = array( 'active_theme' => greenmart_tbay_get_config('active_theme', 'organic'), 'cancel' => esc_html__('cancel', 'greenmart'), 'mobile' => (wp_is_mobile()) ? true : false, 'search' => esc_html__('Search', 'greenmart'), 'view_all' => esc_html__('View All', 'greenmart'), 'instagram_private' => esc_html__('This profile is private', 'greenmart'), 'timeago' => array( 'suffixAgo' => esc_html__('ago', 'greenmart'), 'suffixFromNow' => esc_html__('from now', 'greenmart'), 'inPast' => esc_html__('any moment now', 'greenmart'), 'seconds' => esc_html__('less than a minute', 'greenmart'), 'minute' => esc_html__('about a minute', 'greenmart'), 'minutes' => esc_html__('%d minutes', 'greenmart'), 'hour' => esc_html__('about an hour', 'greenmart'), 'hours' => esc_html__('about %d hours', 'greenmart'), 'day' => esc_html__('a day', 'greenmart'), 'days' => esc_html__('%d days', 'greenmart'), 'month' => esc_html__('about a month', 'greenmart'), 'months' => esc_html__('%d months', 'greenmart'), 'year' => esc_html__('about a year', 'greenmart'), 'years' => esc_html__('%d years', 'greenmart'), ) ); if( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { $translate['ajax_single_add_to_cart'] = (bool) greenmart_tbay_get_config('ajax_single_add_to_cart', false); $translate['ajax_update_quantity'] = (bool) greenmart_tbay_get_config('ajax_update_quantity', true); } wp_localize_script( 'greenmart-script', 'greenmart_settings', $translate ); } add_action( 'wp_enqueue_scripts', 'greenmart_tbay_scripts', 100 ); function greenmart_tbay_footer_scripts() { if ( greenmart_tbay_get_config('footer_js') != "" ) { $footer_js = greenmart_tbay_get_config('footer_js'); echo trim($footer_js); } } add_action('wp_footer', 'greenmart_tbay_footer_scripts'); add_action( 'admin_enqueue_scripts', 'greenmart_tbay_load_admin_styles' ); function greenmart_tbay_load_admin_styles() { wp_enqueue_style( 'greenmart-custom-admin', get_template_directory_uri() . '/css/admin/custom-admin.css', false, '1.0.0' ); } /** * Display descriptions in main navigation. * * @since greenmart 2.1.6 * * @param string $item_output The menu item output. * @param WP_Post $item Menu item object. * @param int $depth Depth of the menu. * @param array $args wp_nav_menu() arguments. * @return string Menu item with possible description. */ function greenmart_tbay_nav_description( $item_output, $item, $depth, $args ) { if ( 'primary' == $args->theme_location && $item->description ) { $item_output = str_replace( $args->link_after . '', '' . $item->description . '' . $args->link_after . '', $item_output ); } return $item_output; } add_filter( 'walker_nav_menu_start_el', 'greenmart_tbay_nav_description', 10, 4 ); /** * Add a `screen-reader-text` class to the search form's submit button. * * @since greenmart 2.1.6 * * @param string $html Search form HTML. * @return string Modified search form HTML. */ function greenmart_tbay_search_form_modify( $html ) { return str_replace( 'class="search-submit"', 'class="search-submit screen-reader-text"', $html ); } add_filter( 'get_search_form', 'greenmart_tbay_search_form_modify' ); function greenmart_tbay_get_config($name, $default = '') { global $tbay_options; if ( isset($tbay_options[$name]) ) { return $tbay_options[$name]; } return $default; } if ( ! function_exists( 'greenmart_time_link' ) ) : /** * Gets a nicely formatted string for the published date. */ function greenmart_time_link() { $time_string = '%2$s'; $time_string = sprintf( $time_string, get_the_date( DATE_W3C ), get_the_date(), get_the_modified_date( DATE_W3C ), get_the_modified_date() ); // Wrap the time string in a link, and preface it with 'Posted on'. return sprintf( /* translators: %s: post date */ __( 'Posted on %s', 'greenmart' ), '' . $time_string . '' ); } endif; function greenmart_tbay_get_global_config($name, $default = '') { $options = get_option( 'greenmart_tbay_theme_options', array() ); if ( isset($options[$name]) ) { return $options[$name]; } return $default; } function greenmart_tbay_get_load_plugins() { $plugins[] =(array( 'name' => esc_html__( 'WooCommerce', 'greenmart' ), 'slug' => 'woocommerce', 'required' => true, )); $plugins[] =(array( 'name' => esc_html__( 'MailChimp', 'greenmart' ), 'slug' => 'mailchimp-for-wp', 'required' => true )); $plugins[] =(array( 'name' => esc_html__( 'Contact Form 7', 'greenmart' ), 'slug' => 'contact-form-7', 'required' => true, )); $plugins[] =(array( 'name' => esc_html__( 'WPBakery Visual Composer', 'greenmart' ), 'slug' => 'js_composer', 'required' => true, 'source' => esc_url( 'https://bitbucket.org/devthembay/update-plugin/raw/master/plugins/js_composer.zip' ), )); $plugins[] =(array( 'name' => esc_html__( 'Tbay Framework For Themes', 'greenmart' ), 'slug' => 'tbay-framework', 'required' => true , 'source' => esc_url( 'https://bitbucket.org/devthembay/update-plugin/raw/master/plugins/tbay-framework.zip' ), )); $plugins[] =(array( 'name' => esc_html__( 'WooCommerce Variation Swatches', 'greenmart' ), 'slug' => 'woo-variation-swatches', 'required' => true, 'source' => esc_url( 'https://downloads.wordpress.org/plugin/woo-variation-swatches.zip' ), )); $plugins[] =(array( 'name' => esc_html__( 'YITH WooCommerce Quick View', 'greenmart' ), 'slug' => 'yith-woocommerce-quick-view', 'required' => false )); $plugins[] =(array( 'name' => esc_html__( 'YITH WooCommerce Frequently Bought Together', 'greenmart' ), 'slug' => 'yith-woocommerce-frequently-bought-together', 'required' => false )); $plugins[] =(array( 'name' => esc_html__( 'YITH WooCommerce Wishlist', 'greenmart' ), 'slug' => 'yith-woocommerce-wishlist', 'required' => false )); $plugins[] =(array( 'name' => esc_html__( 'YITH Woocommerce Compare', 'greenmart' ), 'slug' => 'yith-woocommerce-compare', 'required' => false )); $plugins[] =(array( 'name' => esc_html__( 'Revolution Slider', 'greenmart' ), 'slug' => 'revslider', 'required' => true , 'source' => esc_url( 'https://bitbucket.org/devthembay/update-plugin/raw/master/plugins/revslider.zip' ), )); tgmpa( $plugins ); } require get_template_directory() . '/inc/plugins/class-tgm-plugin-activation.php'; require get_template_directory() . '/inc/functions-helper.php'; require_once( get_parent_theme_file_path( GREENMART_INC . '/skins/'.greenmart_tbay_get_theme().'/functions.php') ); require get_template_directory() . '/inc/functions-frontend.php'; /** * Implement the Custom Header feature. * */ require get_template_directory() . '/inc/custom-header.php'; require get_template_directory() . '/inc/classes/megamenu.php'; require get_template_directory() . '/inc/classes/custommenu.php'; require get_template_directory() . '/inc/classes/mmenu.php'; /** * Custom template tags for this theme. * */ require get_template_directory() . '/inc/template-tags.php'; if ( defined( 'TBAY_FRAMEWORK_REDUX_ACTIVED' ) ) { greenmart_tbay_include_files( get_template_directory() . '/inc/vendors/redux-framework/*.php' ); define( 'GREENMART_REDUX_FRAMEWORK_ACTIVED', true ); } if ( class_exists( 'CMB2' ) ) { greenmart_tbay_include_files( get_template_directory() . '/inc/vendors/cmb2/*.php' ); define( 'GREENMART_CMB2_ACTIVED', true ); } if ( class_exists( 'WooCommerce' ) ) { greenmart_tbay_include_files( get_template_directory() . '/inc/vendors/woocommerce/*.php' ); define( 'GREENMART_WOOCOMMERCE_ACTIVED', true ); } if( class_exists('WPBakeryShortCode') ) { greenmart_tbay_include_files( get_template_directory() . '/inc/vendors/visualcomposer/*.php' ); define( 'GREENMART_VISUALCOMPOSER_ACTIVED', true ); } if ( defined( 'TBAY_FRAMEWORK_REDUX_ACTIVED' ) ) { greenmart_tbay_include_files( get_template_directory() . '/inc/widgets/*.php' ); define( 'GREENMART_TBAY_FRAMEWORK_ACTIVED', true ); define( 'TBAY_FRAMEWORK_WIDGETS_ACTIVED', true ); } /** * Customizer additions. * */ require_once( get_parent_theme_file_path( GREENMART_INC . '/skins/'.greenmart_tbay_get_theme().'/customizer.php') ); require_once( get_parent_theme_file_path( GREENMART_INC . '/skins/'.greenmart_tbay_get_theme().'/custom-styles.php') ); window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/giahungfoods.vn\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.6.2"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } #rs-demo-id {} .woocommerce form .form-row .required { visibility: visible; } .variable-item:not(.radio-variable-item) { width : 30px; height : 30px; } .woo-variation-swatches-style-squared .button-variable-item { min-width : 30px; } .button-variable-item span { font-size : 16px; } /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"Xem gi\u1ecf h\u00e0ng","cart_url":"https:\/\/giahungfoods.vn\/cart\/","is_cart":"","cart_redirect_after_add":"yes"}; /* ]]> */ .woocommerce-product-gallery{ opacity: 1 !important; } function setREVStartSize(e){ try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) ? window.innerWidth : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.innerHeight); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.innerWidth ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.type==="carousel" && e.justify==="true" ? e.gh[ix] : (e.gh[ix] * m)) + (e.tabh + e.thumbh); } if(window.rs_init_css===undefined) window.rs_init_css = document.head.appendChild(document.createElement("style")); document.getElementById(e.c).height = newh; window.rs_init_css.innerHTML += "#"+e.c+"_wrapper { height: "+newh+"px }"; } catch(e){ console.log("Failure at Presize of Slider:" + e) } };.vc_custom_1512654065866{margin-top: 30px !important;margin-bottom: 60px !important;}.vc_custom_1506304701449{margin-top: 60px !important;background-color: #fcfcfc !important;}.vc_custom_1583562774162{margin-bottom: 70px !important;padding-top: 87px !important;padding-bottom: 80px !important;background-image: url(http://giahungfoods.vn/wp-content/uploads/2020/03/the-beneficial-role-of-fibres-1920x500-1.jpg?id=2844) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1513153283582{margin-top: 65px !important;padding-top: 55px !important;background-color: #fcfcfc !important;}.vc_custom_1513153347629{margin-bottom: 77px !important;padding-top: 25px !important;}.vc_custom_1515817843240{margin-bottom: 77px !important;padding-top: 25px !important;}.vc_custom_1538116102331{margin-top: 0px !important;}.vc_custom_1538116124593{padding-right: 40px !important;padding-left: 115px !important;} .wpb_animate_when_almost_visible { opacity: 1; }

Giahungfoods.vn Overview

Giahungfoods.vn belongs to RUNSYSTEM-AS-VN GMO RUNSYSTEM JSC, VN. Check the list of other websites hosted by RUNSYSTEM-AS-VN GMO RUNSYSTEM JSC, VN.

In terms of rank-to-traffic ratio, giahungfoods.vn has 1,525 unique users per day, viewing 3,080 pages. The rank based value of giahungfoods.vn is 2,333 USD. Every user makes 2.16 pageviews on average.

Giahungfoods.vn boasts a link base consisting of 231 referring domains and 243 external backlinks, as revealed by the data obtained from web network scanning.

Giahungfoods.vn top-level domain belongs to .VN domain zone. Check other webpages in .VN zone.

According the last verification test in January 05, 2022, giahungfoods.vn has a self-signed SSL certificate, Click button “Update” SSL Information at the Safety Information section.

Based on data from Symantec giahungfoods.vn is a fairly safe domain.

Giahungfoods.vn Website Safety

logo
Overview
Last Updated: 01/23/2026
Unknown status.
We gather website safety and reputation data and compare it with available third-party sources so we calculate own safety and trustworthiness rate based on information that we get.
Norton connect safe logo
Norton Connect Safe
Last Updated: 09/29/2025
giahungfoods.vn is safe.
Norton ConnectSafe evaluates giahungfoods.vn for any unsafe and insecure content. The results are critical for families with young children.
Google logo
Google Safe Search
Last Updated: 01/23/2026
Not yet checked.
SafeSearch is used as a parental control tool to filter out any inappropriate for your children search results on your devices: phones, tablets or personal computers.
Google safe brwosing logo
Google Safe Browsing
Last Updated: 01/23/2026
McAfee logo
Site Advisor
Last Updated: 01/23/2026
Not yet checked.
McAfee assesses giahungfoods.vn for a meaningful set of security threats. Featured dangers from annoying pop-ups to hidden Trojans, that can steal your identity, will be revealed. McAfee does not analyze giahungfoods.vn for mature or inappropriate content, only security checks are evaluated.
Web of trust logo
Web of Trust
Last Updated: 01/23/2026
giahungfoods.vn child safety is unknown.
The WOT calculates reputation of the giahungfoods.vn. This reputation system receives ratings from users and information from third-party sources, assesses the giahungfoods.vn for safety features and confirms, whether giahungfoods.vn is suitable for children.

SSL Information
Domainkusanagi71
Issuer OrganizationUnknown
IssuerUnknown
AlgorithmRSA-SHA256
Valid form10/10/2015
Expiration10/09/2016
SignedCertificate is self signed
Additional Domains

Giahungfoods.vn Rank History

Giahungfoods.vn Hosting Information

Server Location

ASN Information

ASN ID: 131392

ASN Title: RUNSYSTEM-AS-VN GMO RUNSYSTEM JSC, VN

Last Update: 05/22/2025

% [whois.apnic.net]
% Whois data copyright terms http://www.apnic.net/db/dbcopyright.html

% Information related to 'AS131072 - AS132095'

as-block: AS131072 - AS132095
descr: APNIC 32-bit ASN block
remarks: These AS numbers are further assigned by APNIC
remarks: to APNIC members and end-users in the APNIC region
admin-c: HM20-AP
tech-c: HM20-AP
mnt-by: APNIC-HM
mnt-lower: APNIC-HM
last-modified: 2009-09-29T05:34:08Z
source: APNIC

role: APNIC Hostmaster
address: 6 Cordelia Street
address: South Brisbane
address: QLD 4101
country: AU
phone: +61 7 3858 3100
fax-no: +61 7 3858 3199
e-mail: helpdesk@apnic.net
admin-c: AMS11-AP
tech-c: AH256-AP
nic-hdl: HM20-AP
remarks: Administrator for APNIC
notify: hostmaster@apnic.net
mnt-by: MAINT-APNIC-AP
last-modified: 2013-10-23T04:06:51Z
source: APNIC

% Information related to 'AS131342 - AS131441'

as-block: AS131342 - AS131441
descr: VNNIC-4byte-ASBLOCK-AP
descr: VNNIC
descr: Vietnam Network Information Center
country: VN
admin-c: TMT17-AP
tech-c: NHT16-AP
mnt-by: APNIC-HM
mnt-lower: MAINT-VN-VNNIC
last-modified: 2015-08-05T00:58:15Z
source: APNIC

person: Nguyen Hong Thang
nic-hdl: NHT16-AP
e-mail: tech@vnnic.vn
address: Vietnam Internet Network Information Center
address: 18 Nguyen Du, Hai Ba Trung, Hanoi
phone: +84-4-35564944
fax-no: +84-4-37821462
country: VN
mnt-by: MAINT-VN-VNNIC
last-modified: 2015-08-04T01:56:01Z
source: APNIC

person: Tran Minh Tan
nic-hdl: TMT17-AP
e-mail: info@vnnic.vn
address: Vietnam Internet Network Information Center
address: 18 Nguyen Du, Hai Ba Trung, Hanoi
phone: +84-4-35564944
fax-no: +84-4-37821462
country: VN
mnt-by: MAINT-VN-VNNIC
last-modified: 2015-08-04T01:56:01Z
source: APNIC

% Information related to 'AS131392'

% Abuse contact for 'AS131392' is 'hm-changed@vnnic.vn'

aut-num: AS131392
as-name: RUNSYSTEM-AS-VN
descr: GMO RUNSYSTEM JSC
descr: 118 Nguyen Ngoc Nai, Khuong Mai, Thanh Xuan, Hanoi
country: VN
import: from AS7643 action pref=100; accept ANY
import: from AS38735 action pref=100; accept ANY
import: from AS24086 action pref=100; accept ANY
import: from AS18403 action pref=100; accept ANY
export: to AS7643 announce AS131392
export: to AS38735 announce AS131392
export: to AS24086 announce AS131392
export: to AS18403 announce AS131392
admin-c: NVT15-AP
tech-c: LQL7-AP
mnt-by: MAINT-VN-VNNIC
mnt-routes: MAINT-VN-VNNIC
mnt-irt: IRT-VNNIC-AP
last-modified: 2013-10-24T01:52:03Z
source: APNIC

irt: IRT-VNNIC-AP
address: Ha Noi, VietNam
phone: +84-24-35564944
fax-no: +84-24-37821462
e-mail: hm-changed@vnnic.vn
abuse-mailbox: hm-changed@vnnic.vn
admin-c: NTTT1-AP
tech-c: NTTT1-AP
auth: # Filtered
mnt-by: MAINT-VN-VNNIC
last-modified: 2017-11-08T09:40:06Z
source: APNIC

person: Le Quang Lang
nic-hdl: LQL7-AP
e-mail: tuan@tenten.vn
address: GMO RUNSYSTEM JSC
address: 118 Nguyen Ngoc Nai, Khuong Mai, Thanh Xuan, Hanoi
phone: +84-4-37724304
fax-no: +84-4-37724304
country: VN
mnt-by: MAINT-VN-VNNIC
last-modified: 2013-03-07T04:46:02Z
source: APNIC

person: Ngo Van Tau
nic-hdl: NVT15-AP
e-mail: info@tenten.vn
address: GMO RUNSYSTEM JSC
address: 118 Nguyen Ngoc Nai, Khuong Mai, Thanh Xuan, Hanoi
phone: +84-4-37724304
fax-no: +84-4-37724304
country: VN
mnt-by: MAINT-VN-VNNIC
last-modified: 2013-03-07T04:46:01Z
source: APNIC

% This query was served by the APNIC Whois Service version 1.88.15-46 (WHOIS-US3)

Giahungfoods.vn Domain Registration and Settings

WHOIS

giahungfoods.vn domain is not supported


DNS Records
HostA RecordTTL
HostMX RecordPriorityTTL
HostNS RecordTTL
HostTXT RecordTTL

Giahungfoods.vn HTML Check

not found

Giahungfoods.vn Common Typos

www.giahungfoods.com
www.giahungfoods.net
www.giahungfoods.org
www.giahungfoods.info
www.giahungfoods.biz
www.giahungfoods.us
www.giahungfoods.mobi
www.iahungfoods.vn
www.giahungfoods.vn
www.fiahungfoods.vn
www.gfiahungfoods.vn
www.fgiahungfoods.vn
www.viahungfoods.vn
www.gviahungfoods.vn
www.vgiahungfoods.vn
www.tiahungfoods.vn
www.gtiahungfoods.vn
www.tgiahungfoods.vn
www.biahungfoods.vn
www.gbiahungfoods.vn
www.bgiahungfoods.vn
www.yiahungfoods.vn
www.gyiahungfoods.vn
www.ygiahungfoods.vn
www.hiahungfoods.vn
www.ghiahungfoods.vn
www.hgiahungfoods.vn
www.gahungfoods.vn
www.guahungfoods.vn
www.giuahungfoods.vn
www.guiahungfoods.vn
www.gjahungfoods.vn
www.gijahungfoods.vn
www.gjiahungfoods.vn
www.gkahungfoods.vn
www.gikahungfoods.vn
www.gkiahungfoods.vn
www.goahungfoods.vn
www.gioahungfoods.vn
www.goiahungfoods.vn
www.gihungfoods.vn
www.giqhungfoods.vn
www.giaqhungfoods.vn
www.giqahungfoods.vn
www.giwhungfoods.vn
www.giawhungfoods.vn
www.giwahungfoods.vn
www.gishungfoods.vn
www.giashungfoods.vn
www.gisahungfoods.vn
www.gizhungfoods.vn
www.giazhungfoods.vn
www.gizahungfoods.vn
www.giaungfoods.vn
www.giabungfoods.vn
www.giahbungfoods.vn
www.giabhungfoods.vn
www.giagungfoods.vn
www.giahgungfoods.vn
www.giaghungfoods.vn
www.giayungfoods.vn
www.giahyungfoods.vn
www.giayhungfoods.vn
www.giauungfoods.vn
www.giahuungfoods.vn
www.giauhungfoods.vn
www.giajungfoods.vn
www.giahjungfoods.vn
www.giajhungfoods.vn
www.gianungfoods.vn
www.giahnungfoods.vn
www.gianhungfoods.vn
www.giahngfoods.vn
www.giahyngfoods.vn
www.giahuyngfoods.vn
www.giahhngfoods.vn
www.giahuhngfoods.vn
www.giahhungfoods.vn
www.giahjngfoods.vn
www.giahujngfoods.vn
www.giahingfoods.vn
www.giahuingfoods.vn
www.giahiungfoods.vn
www.giahugfoods.vn
www.giahubgfoods.vn
www.giahunbgfoods.vn
www.giahubngfoods.vn
www.giahuhgfoods.vn
www.giahunhgfoods.vn
www.giahujgfoods.vn
www.giahunjgfoods.vn
www.giahumgfoods.vn
www.giahunmgfoods.vn
www.giahumngfoods.vn
www.giahunfoods.vn
www.giahunffoods.vn
www.giahungffoods.vn
www.giahunfgfoods.vn
www.giahunvfoods.vn
www.giahungvfoods.vn
www.giahunvgfoods.vn
www.giahuntfoods.vn
www.giahungtfoods.vn
www.giahuntgfoods.vn
www.giahunbfoods.vn
www.giahungbfoods.vn
www.giahunyfoods.vn
www.giahungyfoods.vn
www.giahunygfoods.vn
www.giahunhfoods.vn
www.giahunghfoods.vn
www.giahungoods.vn
www.giahungcoods.vn
www.giahungfcoods.vn
www.giahungcfoods.vn
www.giahungdoods.vn
www.giahungfdoods.vn
www.giahungdfoods.vn
www.giahungroods.vn
www.giahungfroods.vn
www.giahungrfoods.vn
www.giahungtoods.vn
www.giahungftoods.vn
www.giahunggoods.vn
www.giahungfgoods.vn
www.giahunggfoods.vn
www.giahungvoods.vn
www.giahungfvoods.vn
www.giahungfods.vn
www.giahungfiods.vn
www.giahungfoiods.vn
www.giahungfioods.vn
www.giahungfkods.vn
www.giahungfokods.vn
www.giahungfkoods.vn
www.giahungflods.vn
www.giahungfolods.vn
www.giahungfloods.vn
www.giahungfpods.vn
www.giahungfopods.vn
www.giahungfpoods.vn
www.giahungfoids.vn
www.giahungfooids.vn
www.giahungfokds.vn
www.giahungfookds.vn
www.giahungfolds.vn
www.giahungfoolds.vn
www.giahungfopds.vn
www.giahungfoopds.vn
www.giahungfoos.vn
www.giahungfooxs.vn
www.giahungfoodxs.vn
www.giahungfooxds.vn
www.giahungfooss.vn
www.giahungfoodss.vn
www.giahungfoosds.vn
www.giahungfooes.vn
www.giahungfoodes.vn
www.giahungfooeds.vn
www.giahungfoors.vn
www.giahungfoodrs.vn
www.giahungfoords.vn
www.giahungfoofs.vn
www.giahungfoodfs.vn
www.giahungfoofds.vn
www.giahungfoocs.vn
www.giahungfoodcs.vn
www.giahungfoocds.vn
www.giahungfood.vn
www.giahungfoodw.vn
www.giahungfoodsw.vn
www.giahungfoodws.vn
www.giahungfoode.vn
www.giahungfoodse.vn
www.giahungfoodd.vn
www.giahungfoodsd.vn
www.giahungfoodds.vn
www.giahungfoodz.vn
www.giahungfoodsz.vn
www.giahungfoodzs.vn
www.giahungfoodx.vn
www.giahungfoodsx.vn
www.giahungfooda.vn
www.giahungfoodsa.vn
www.giahungfoodas.vn