Skip to content

Instantly share code, notes, and snippets.

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 clifgriffin/41f24218558e99850a587ef2b59d5b21 to your computer and use it in GitHub Desktop.
Save clifgriffin/41f24218558e99850a587ef2b59d5b21 to your computer and use it in GitHub Desktop.
Change site name in create shopping account label.
<?php
// Do NOT include the opening php tag.
// Place in your theme's functions.php file
// Change site name in "Create % shopping account" checkbox label
add_filter( 'cfw_create_account_site_name', 'change_create_account_site_name' );
function change_create_account_site_name( $site_name ) {
$site_name = 'Microsoft';
return $site_name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment