Terence Eden
Terence Eden
@amritamishra01 please read https://github.com/edent/SuperTinyIcons/blob/master/CONTRIBUTING.md#hacktoberfest---important
Good spot! I've changed the labelling.
If you've read the docs, you already know the answer 😃
I've updated this to [use the .nu validator](https://github.com/edent/SuperTinyIcons/commit/8100c8502ae7315cb582c0e0bbba812e10f40c92) and to [validate as HTML](https://github.com/edent/SuperTinyIcons/commit/ca345ce1376161a90e17385eb4fdd10e833bbb17#diff-a561630bb56b82342bc66697aee2ad96efddcbc9d150665abd6fb7ecb7c0ab2f) That seems to have fixed things for now. I still think a local solution might be best.
Same on the GTK version (AppImage).  Double Commander Version: 1.1.23 gamma Revision: 694 Commit: 15e166ecd Build date: 2025/03/22 Lazarus: 3.8.0.0 FPC: 3.2.2 Platform: x86_64-Linux-gtk2 OS version: Pop!_OS 22.04 LTS...
The comment gets saved at: https://github.com/pfefferle/wordpress-webmention/blob/3fd2dec6c0e347484be65c15269f83f6ae6651b5/includes/class-webmention-receiver.php#L362 So I need a way to (manually) see if `$commentdata` is a reply, repost, like etc. I assume that'll be `$commentdata['comment_meta']['semantic_linkbacks_type']` ?
In V5, the saving of the WebMention happens in: https://github.com/pfefferle/wordpress-webmention/blob/d4bb5fb09f4622ea8d3e705862ab115b30b359ac/includes/class-receiver.php#L333 So the logic to delete certain types of WebMention could happen there. Although it might be easier / more efficient...
There are now specific comment types - so should be easier to filter. 
Is there a way to use the 5.1.2 filtering to remove these messages? I've just received 200 "Bridgy Response" mentions which I need to delete.
I've added this to my theme's `functions.php` file: ```php // Remove Bridgy likes and reposts add_action( 'comment_post', 'check_comment_content', 10, 2 ); function check_comment_content( $comment_id, $comment_approved ) { $comment = get_comment(...