Skip to content

Instantly share code, notes, and snippets.

@PluginRepublicSupport
Created February 10, 2023 12:48
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 PluginRepublicSupport/fef8c9d0415f8cc5244846afce0d4f2d to your computer and use it in GitHub Desktop.
Save PluginRepublicSupport/fef8c9d0415f8cc5244846afce0d4f2d to your computer and use it in GitHub Desktop.
Pending User Notice Members Only
<?php
/**
* Translate Pending User Notice
*/
function pending_user_notice( $notice ) {
$notice= "Käyttäjätilin tyyppi"; /** Translation here **/
return $notice;
}
add_filter( 'wcmo_pending_user_registration_notice', 'pending_user_notice' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment