Is there a way to change the page title for the "checkout/#/user/register" page? Right now it is defaulting as "Home". I would like to change it to "Create User Account".
Is there a way to change the page title for the "checkout/#/user/register" page? Right now it is defaulting as "Home". I would like to change it to "Create User Account".
Comments
Comment #1
jonshot commentedSame problem here, but it was pretty easy to fix with a call to drupal_set_title('Create user account'); inside a hook_form_alter in a custom module.
Comment #2
J.Murphy commentedThanks for the suggestion. Do you think I could use String Overrides module to accomplish the same result?
Comment #3
roball commentedYou can also just add something like this to your theme's
template.php: