Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $current_laguage = apply_filters( 'wpml_current_language', NULL );
- if ( $current_laguage === 'ua' ) {
- echo <<<EOD
- <script>
- jQuery(function() {
- const newCountriesData = {
- 'Ukraine': 'Україна',
- 'Poland': 'Польща'
- };
- setTimeout(() => {
- jQuery('.iti__country-name').each( function() {
- const countryName = jQuery(this).text();
- jQuery(this).text(newCountriesData[countryName]);
- });
- }, 3000);
- });
- </script>
- EOD;
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement