• Resolved softsleepysounds

    (@softsleepysounds)


    Hi there,

    I know this is an unusual request, but I wish to remove the section of the Jetpack widget on my wp-admin dashboard which says how many blocked malicious logins there have been.

    I want to keep Jetpack but to remove this footer section of the widget. This is the css I have been using but it is not working.

    #jetpack_summary_widget footer
    {
    display: none !important;
    }

    Thank you in advance for your help!
    Sarah

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Richard Archambault

    (@richardmtl)

    Hi! Try this instead:

    #jetpack_summary_widget .protect
    {
    display: none !important;
    }
    

    Let me know how it goes!

    Thread Starter softsleepysounds

    (@softsleepysounds)

    Hey Richard – @richardmtl

    Really appreciate your reply! Unfortunately your css did not work. I tried to clear my cache, but still not working.

    Back to the drawing board I guess! Thanks again 🙂

    Cheers,
    Sarah

    Plugin Contributor James Huff

    (@macmanx)

    Volunteer Moderator

    Try this, it seems to be working for me:

    .protect {
        display: none;
    }

    And, if that doesn’t work:

    .protect {
        display: none !important;
    }

    If that still doesn’t work, where exactly are you applying the change?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘css to remove jetpack ‘blocked malicious login’ section from wp-admin’ is closed to new replies.