May be it take blank space please remove blank space its working fine
Apply following code where you want to display map
<?php echo do_shortcode(‘[MLGM]’); ?>
Go TO yds-support-ticket-system->asset->css->yds_frontend_css.css you can write your css in this file
Use Following Code in function.php its working for me
function tribute_modify_jquery() {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, get_template_directory_uri() . ‘/js/jquery.min.js’, array(), ‘1.11.3’ );
wp_enqueue_script(‘jquery’);
}
add_action(‘wp_enqueue_scripts’, ‘tribute_modify_jquery’);