Thiết lập đa ngôn ngữ khi sử dụng tawk.to cho WordPress

Bạn đang sử dụng WordPress kết hợp WPML và muốn thiết lập cho tawk.to hiển thị sang ngôn ngữ tương ứng?

Bắt đầu nào, hãy nhớ không sử dụng plugin Tawk WordPress. Thay vào đó, hãy sử dụng mã nhúng của Tawk chèn bằng đoạn mã sau trong file footer.php của của bạn:


<?php

$current_language_code = apply_filters( 'wpml_current_language', null );
if($current_language_code == 'vn'):
?>

<script>
//script code tiếng Việt tại đây
</script>

<?php
elseif($current_language_code == 'en'):
?>

<script>
//script code tiếng Anh
</script>

<?php
endif;
?>

Related posts

Leave the first comment

0
Would love your thoughts, please comment.x
()
x