• Resolved JustJo

    (@justjo)


    The flags on the International Phone Number field are wrong. It seems to me that you guys missed the United States which has resulted in Uruguay’s flag displaying next to the name and then the rest of flags (alphabetically) are wrong, which turns into Zimbabwe not having a flag.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Pawel – WPMU DEV Support

    (@wpmudev-support9)

    Hello @justjo !

    Apologies for the inconvenience here!

    Our team is already aware of this issue and they are preparing a fix to be included in an upcoming update.

    For now we have a snippet which should fix this:

    <?php
    /*
    Plugin Name: Flags Temporary Fix for Forminator Pro
    Description: This is a plugin that fixes temporarily the flags issue on Forminator Pro form.
    Version: 1.0
    Author: Francisco Garay
    Author URI: http://franciscogaray.ga/
    License: GPLv2 or later
    Text Domain: flags-temporary-fix
    */
    
    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    }
    
    if ( ! function_exists( 'wpmu_franciscogaray_flags_fix' ) ) {
    
        function wpmu_franciscogaray_flags_fix() {
    
            add_action('wp_head', 'wpmu_franciscogaray_flags_style', 100);
    
            function wpmu_franciscogaray_flags_style()
            {
             echo "<style>@media (-webkit-min-device-pixel-ratio:2), (max-resolution:191dpi) { .iti__flag { background-size: 5630px 15px !important; } }</style>";
            }
    
        }
    
        return wpmu_franciscogaray_flags_fix();
    
    }

    To install this fix, please copy the code to a .php file and upload the file to wp-content/mu-plugins (please create the directory if it doesn’t exist).

    Clearing cache and force-refreshing the browser may be necessary as well after applying the fix.

    Warm regards,
    Pawel

    Plugin Support Kasia – WPMU DEV Support

    (@wpmudev-support2)

    Hello @justjo ,

    We haven’t heard from you for some time now, so it looks like you don’t need our assistance anymore.

    Feel free to re-open this ticket if needed.

    Kind regards
    Kasia

    Thread Starter JustJo

    (@justjo)

    Sorry kasha, I hadn’t realized you replied. Thanks!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Flags on International Phones are wrong’ is closed to new replies.