Chèn số cờ nước vào số điện thoại contact 7 không dùng Plugin
09/03/2024 1974
Bạn đang muốn chèn cờ và tên nước vào trường điện thoại của contact 7 giống như hình dưới.
Vui lòng copy đoạn code sau vào file function:
function chen_css_js_phone_country() {
wp_enqueue_style( 'nb-intlTelInput-style', 'https://abweb.vn/wp-content/themes/flatsome-child/tools/contact7-flag/flag.css' );
wp_enqueue_script( 'nb-intlTelInput-script','https://abweb.vn/wp-content/themes/flatsome-child/tools/contact7-flag/flag.js', array( 'jquery' ) );
}
add_action( 'wp_enqueue_scripts', 'chen_css_js_phone_country' );
function custom_js_phone_country(){
?>
<script>(function($) {
$(function() {
$(".wpcf7-tel").intlTelInput({
autoPlaceholder: "off",
hiddenInput: "full_number",
nationalMode: false,
placeholderNumberType: "MOBILE",
geoIpLookup: function(callback) {
$.get("https://ipinfo.io", function() {}, "jsonp").always(function(resp) {
var countryCode = (resp && resp.country) ? resp.country : "";
callback(countryCode);
});
},
initialCountry: "auto",
});
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer','custom_js_phone_country');
Nếu bạn lười không muốn copy code này thì có thể dùng plugin mình đóng gói tại đây(tí viết xong uplên):