Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active May 17, 2022 05:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/8a4e7776b2e0482841086319949d4808 to your computer and use it in GitHub Desktop.
Save braddalton/8a4e7776b2e0482841086319949d4808 to your computer and use it in GitHub Desktop.
Submit Button Text for WooCommerce Product Reviews https://wpsites.net/?p=109670
add_action( 'comment_form', 'add_comment_notice', 888 );
function add_comment_notice() {
if ( ! is_product() ) {
return;
}
?><p class="submit-reviews-notice"><?php esc_html_e( 'Might take 10 - 20 seconds after clicking Submit.', 'woocommerce' ); ?></p><?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment