I'm using wordpress 4.8 and plugin WPDISCUZ for commenting system. How do I disable ONLY this HREF within this plugin from functioning (become regular span) while other href still work normally? I mean I don't want my reader to click this link accidentally or intentionally and sent to admin login page but instead they can login via their social network on comment fields. Is there any way to fix this using Javascript/jQuery?
CSS from view source.
<p class="wc-must-login">You must be <a rel="nofollow" href="https://www.example.com/admin-login-page/">logged in</a> to post a comment. </p>
NOTE:
EDIT: I thought only Javascript / jQuery can achieve this while CSS only for styling. But thanks to Farhad Bagherlo seems it can be achieve with similar effect using CSS.
.wc-must-login a {
pointer-events: none;
cursor: default;
}
<p class="wc-must-login"><a target="_blank" href="https://us.yahoo.com/">link</a></p>