Hi,
I would like to remove URL link (a href) when a comment is posted. Keep the text only but not with the hyperlink.
Is this possible?
You can use the hook code below:
remove_filter ( 'comment_text', 'make_clickable', 9) ;
This article should be helpful for you: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/
Great! it works.