Bonjour,
Merci pour le retour, nous savons du coup où chercher
Avez vous la possibilité d’installer le plugin
de remplacer le contenu du fichier scripts.php par le code qui suit et d’activer le plugin. Avez vous toujours l’erreur ?
Sebastien.
<?php
function comarquage_scripts() {
$options = EMENDO_Comarquage_Options::get_all_options();
// JS Enqueue
if ( $options->comarquage_global_js_googlemap_enable ) {
$google_apikey = empty( $options->comarquage_global_js_googlemap_apikey ) ? ” : ‘&key=’ . $options->comarquage_global_js_googlemap_apikey;
wp_register_script(‘google-mapjs’, ‘https://maps.googleapis.com/maps/api/js?language=fr’ . $google_apikey, ”, ‘3.29’, true );
wp_enqueue_script( ‘google-mapjs’ );
}
// CSS enqueue
if ( $options->comarquage_global_css_enable ) {
wp_register_style( ’emendo-comarquage’, COMARQUAGE_URI .’assets/css/comarquage.css’,null, COMARQUAGE_VERSION);
wp_enqueue_style( ’emendo-comarquage’ );
}
// Fontawesome for Icons
if ( $options->comarquage_global_css_fontawesome_enable ) {
wp_register_style( ‘font-awesome’, ‘https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css’,null,’4.7.0′);
wp_enqueue_style( ‘font-awesome’ );
}
}
add_action( ‘wp_enqueue_scripts’, ‘comarquage_scripts’, 0 );