Support » Plugin: Wordpress Google Map Professional (Map In Your Language) » RTL admin goes bad after activating plugin

  • I use Hebrew language so the admin panel is RTL.
    I found the problem. Change:

    function register_shortcodes(){
       add_shortcode('googlemap', 'map_shortcode');
    }
    add_action( 'init', 'register_shortcodes');
    
    wp_enqueue_script('wp-color-picker');
    wp_enqueue_style( 'wp-color-picker' );

    To:

    function register_shortcodes(){
       add_shortcode('googlemap', 'map_shortcode');
       wp_enqueue_script('wp-color-picker');
       wp_enqueue_style( 'wp-color-picker' );
    }
    add_action( 'init', 'register_shortcodes');

    https://wordpress.org/plugins/google-map-professional/

  • The topic ‘RTL admin goes bad after activating plugin’ is closed to new replies.