If your site allows comments, you may want to set it up to where you have to approve comments before they appear on the site. When this setting is enabled, commenters see a message after posting a comment telling them that their comment is awaiting moderation. You can change that comment awaiting moderation message text in StudioPress Genesis. Just add this WordPress Code Snippet to the functions.php file in your current WordPress theme in order to change the comment is awaiting moderation text to a custom message.
/** * Change comment is awaiting moderation message * * @author WPSnacks.com * @link https://www.wpsnacks.com */ add_filter( 'genesis_comment_awaiting_moderation', 'change_genesis_comment_awaiting_moderation' ); function change_genesis_comment_awaiting_moderation() { return 'PUT YOUR CUSTOM MESSAGE HERE'; }
That’s it, just change the “PUT YOUR CUSTOM MESSAGE HERE” text to whatever you want your awaiting moderation message to be and now your commenters will see your custom message instead of the default comment is awaiting moderation text. Hope this helps, enjoy!
FUCKOFF says
IT DOESN’T WORK. PLEASE DO NOT MAKE US LOSE OUR TIME