• Resolved araucaria

    (@araucaria)


    Hi,

    I’m noticing that in WordPress 4.4, the entry for Spots in the WP Admin menu has two overlapping icons. I am seeing Spot’s own icon, but also the standard WordPress drawing pin icon.

    I think this is just since the upgrade to WP 4.4.

    – Chris

    https://ww.wp.xz.cn/plugins/spots/

Viewing 4 replies - 1 through 4 (of 4 total)
  • yes I’m seeing this too since 4.4.

    Yep, same here. Until an update lands I amended the CSS in /plugins/spots/ict-spots.php around line 534 with some dimensions and then removed the WP icon on the :before…

    #postdivrich .mce-i-addspotbutton,
    #wpbody-content span.mce_addspotbutton,
    #adminmenu #menu-posts-spot div.wp-menu-image,
    #icon-edit.icon32-posts-spot {
    margin: 5px 5px 0;
    width: 24px;
    height: 20px;
    background-image: url( <?php echo esc_url( SPOTS_URL ) ?>/assets/icon.png );
    background-repeat:no-repeat;
    background-color:transparent;
    background-position:0 0;
    background-size: initial;
    }
    
    #menu-posts-spot div.wp-menu-image:before {
    content: "";
    }

    Hi guys,

    I rolled out an update, please feel free to update.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Double icon in WordPress admin’ is closed to new replies.