Leo
(@leohsiang)
Hi there,
Try this CSS:
#cancel-comment-reply-link {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps 🙂
Thanks, Leo. I want to remove it completely. Is there any code that can be added to functions.php?
Also, please provide a code to remove skip to content.
-
This reply was modified 6 years, 8 months ago by
anurage.
Leo
(@leohsiang)
WordPress actually handles that part.
Did some Googling and found this snippet that looks promising:
https://wordpress.stackexchange.com/questions/8817/how-to-remove-the-click-here-to-cancel-reply-link-from-the-wordpress-comment-f
Might be worth checking with WordPress support if that doesn’t work.
Theme Author
Tom
(@edge22)
To remove the skip to content link, try this PHP:
remove_action( 'generate_before_header', 'generate_do_skip_to_content_link', 2 );
Thank you so much, Tom and Leo.