Hope this is gonna help. Please try this snippet. Put it in your themes functions.php or you could it load it thorough a plugin or any other way-
function the_dramatist_remove_says_from_comment( $translation, $text, $domain ) {
//what text you want to have instead of 'says' in comments. For removing 'says' keep this blank
$new_var="";
$translations = &get_translations_for_domain( $domain );
if ( $text == '<cite class="fn">%s</cite> <span class="says">says:</span>' ) {
if($new_var) $new_var=" ".$new_var; //compensate for the space character
return $translations->translate( '<cite class="fn">%s</cite><span class="says">'.$new_var.':</span>' );
} else {
return $translation; // standard text
}
}
add_filter('gettext', 'the_dramatist_remove_says_from_comment', 10, 4);
Related Posts:
- How to load scripts/styles specific for a page
- How do I create a new WP admin color scheme?
- How can I remove the title “leave a reply” in the comment box in twentyeleven?
- Add attribute to link tag that’s generated through wp_register_style?
- TinyMCE custom stylesheets for different post types
- disable comments if array exists
- Is it possible to be more page/post specific with admin_enqueue_script?
- Child Theme Not Overriding Parent Theme
- CSS stylesheet not loading
- Enqueue styles after a plugin
- How to Add a Random Custom Gravatar in the WordPress Comments?
- Add class or ID to any WordPress function
- Register and enqueue style.css custom theme
- Multiple CSS body classes to specific page I.D.’s – is this possible?
- Show top commenters without using a plugin
- Change the HTML of the comment form that is generating somewhere from the core WordPress
- Why does the ‘wp_nav_menu’ function work only until a menu is created?
- Commenter should see only his comments in wordpress
- Child Theme files – what is needed?
- How do I add Bootstrap and LESS to my migrated WordPress site?
- How to Display Frontend CSS for Administrator only
- WordPress Menuing Question :focus
- Filter out other users comments. Visualize only own comments and editor role users’ comments
- wp-comment author- url +, email filter hook
- Where to add the permalink in this function?
- Incorrect redirect after commenting
- comments_popup_link without echo?
- Getting comment count per post not working
- Change CSS for logged in users
- What is the Difference in bones_comments() and comments.php
- How to stop wordpress from injecting hard-coded style into image attachments with captions
- different style sheet for just one page template
- header_image() with CSS
- Split Media Queries in different files!
- Some questions about how proper add 2 CSS file in a WordPress theme?
- problem loading stylesheets to wp_head dynamically
- I can’t add CSS with functions.php
- Theme JS is available but theme CSS isn’t
- Proper Way to Load stylesheet on Condition
- Default Nav Highlight
- Custom styles in Tiny MCE with an external CSS file
- why can’t i add front.css to my frontpage.php
- get_template_directory_uri() links to child theme not parent
- Getting out side of wp root folder from function.php using absolute path
- Page Template Won’t Load Correct CSS File
- current_page_item is missing inside wp_nav_menu
- define css class in functions.php
- WordPress comment_form() does not display actual comments
- WordPress comment processing . Default unapproved comments detection before posting
- Completely Disable WordPress RSS Feeds
- How do I change where “You must be logged in to comment” directs users?
- Advanced method to control cache of enqueued style/script
- Combine page types and Custom Taxonomy in a functions.php command
- Can we have conditional CSS styling?
- Post content overflows on my mobile phone
- Stylesheet does not load despite functions.php
- Remove clickable Link of WordPress Site Logo from Woocommerce Single Product page
- Remove nofollow from internal comment links via functions.php
- How do I make a custom “Read More Blogs” button for my blog page
- Help using ShortCodes to style whole chunks of the post
- How can I automatically delete comments that contain a URL?
- Setting Up Child Theme To Take Priority
- Reference multiple style sheets, clearing styles for permalink page, custom fields for css
- CSS disabled after getting rid of emoji
- Woocommerce – Switching Price for Category
- Adding a class to the body of an inactive site using multisite
- Conditionally apply css for a specific template part
- How do I dequeue a Stylesheet, stored in an ‘Assets’ folder?
- Comment function for page
- How to identify author in wordpress comments?
- Child Theme not loading multiple stylesheets
- Correct way of Enqueue self hosted fonts in sass project
- Help with is_page() and calling css for specific pages in a Child Theme
- Child theme style.css didn’t work properly but the Customize Additional CSS did [closed]
- How to automatically add custom classes to headings in content area
- Changing the color of post title [closed]
- Getting error while trying to use custom comment function
- Preventing PHP Execution in Parent Theme
- Increase Comment Author Gravatar Size On WordPress Default Comment Function
- Random text changing to weird icons in both admin & front end
- Functions.php in child theme that loads CSS file breaks website
- Custom Nested WordPress Comments with avatar
- Syling Custom Fields echo’s from from functions.php
- functions.php / replacing div’s with new ones?
- Undo a function that is not (seemingly) hooked to an action?
- Comment Function
- WP Custom Comment Callback Not Responding
- How to remove “login to reply” from individual comments [duplicate]
- Should I use `get_stylesheet_uri()` or `get_template_directory_uri()` when calling my CSS Stylesheet?
- How can I append and prepend something to all post hyperlinks without using ::before or ::after? PHP hook solution?
- Image width issue in IE [closed]
- How do I make my child theme’s CSS update when I save it?
- Getting full code of wp_list_comments instead of replacing it
- Why don’t ‘wp_nav_menu’ CSS classes work until a menu is created?
- Comment turned Invisible
- User’s Comments Number: Storing it in a meta field for different uses
- wp_head not injecting css
- comments_template() doesn’t work with ajax call
- Add custom css to specific user
- WP backend, Show only own comments (give to users who wrote/published/assigned) posts