How to disable or hide WordPress.com as a social media login option for Jetpack Comments [closed]

Expanding on Shines good find that its an iframe, i came up with this:

If you can get a HTML element in next to the iframe (so that its a sibling to the iframe) you could make the parent and the iframe position relative and this new element (we can call the new element blockie) position absolute. now make sure that the z-index of blockie is higher than the z-index of the iframe, then use css attributes “top” and “right” to position blockie over the logo

Example CSS:

.blockie-parent{
    position:relative;
}

.blockie-parent iframe{
    position:relative;
    z-index:2;
}

.blockie{
    position:absolute;
    z-index:3;
    width:16px;
    height:16px;
    top: 140px;
    right: 69px;
    background:gray;
}    

Change your theme’s comments.php to follow this example:

<div class="blockie-parent">
    <div class="blockie"></div>
    <?php comment_form(); ?>
</div>

This will block the button. You may want to change “blockie” background colour to match the background of the comment box. I admit its not the nicest solution, but it does work!

Good luck Travis!