• Resolved lukodp

    (@lukodp)


    I manually inserted cpt icon in wp-admin menu. Now after activating mp6 plugin, everything looks great but regular “pin” icon is above my manually inserted cpt icon.
    I inserted cpt icon through functions.php by attaching function on ‘admin_head’.
    Any way to disable that “pin” icon?

    http://wordpress.org/extend/plugins/mp6/

Viewing 2 replies - 1 through 2 (of 2 total)
  • I believe adding this css to your admin will hide the pin…

    .icon16.icon-posts-<<your-post-type-name>>:before,
    #adminmenu #menu-posts-<<your-post-type-name>> div.wp-menu-image:before {
    	content: '';
    	display: none;
    }

    You could also use an icon font for your CPT. I created a small resource for using FontAwesome with MP6 on Github.

    Thread Starter lukodp

    (@lukodp)

    Thanks, that did it! 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom post type icon’ is closed to new replies.