Integration widget Mondial Relay Js

You need to add this quick and dirty code in your functions.php if you’re trying to add mondial relay to checkout page :

add_action('wp_footer', function(){
    if(is_checkout())
    {
    ?>      
    <!--On charge Google Map API-->  
    <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>  

    <!--On charge le widget mondial relay depuis leurs serveurs-->  
    <script type="text/javascript" src="https://widget.mondialrelay.com/parcelshop-picker/v3_0/scripts/jquery.plugin.mondialrelay.parcelshoppicker.min.js"></script>  
    <script>
    $(document).ready(function () {  
        // Charge le widget dans la DIV d'id "Zone_Widget" avec les paramètres indiqués  
        // et renverra le Point Relais sélectionné par l'utilisateur dans le champs d'ID "Retour_Widget"  
        $("#Zone_Widget").MR_ParcelShopPicker({     
                Target: "#Retour_Widget", // Selecteur JQuery de l'élément dans lequel sera renvoyé l'ID du Point Relais sélectionné (généralement un champ input hidden)  
                Brand: "BDTEST  ", // Votre code client Mondial Relay  
                Country: "FR" // Code ISO 2 lettres du pays utilisé pour la recherche  
        });  
    }); 
    </script>
    <?php
    }
});

You better have to use the mondial relay plugin I think : https://www.mondialrelay-woocommerce.com/

Be sure to have a tag with “Zone_Widget” and “Retour_Widget” id in your checkout page.