While other reg / login page titles can be altered with the following code, any reg form created with this module cannot be overridden.

function MyTheme_preprocess_page(&$variables) { 

  if (arg(0) == 'user') { // This function sets custom page titles for the user pages
    switch (arg(1)) {
      case NULL:
        if (!user_is_logged_in()) drupal_set_title(t('Log in'));
        break;
      case '[arg 2 of the path set for custom reg form]':
        drupal_set_title(t('Title that can't be set'));
        break;
      case 'register':
        drupal_set_title(t('Register'));
        break;
      case 'password':
        drupal_set_title(t('Request new password'));
        break;
      case 'login':
        drupal_set_title(t('Log in'));
        break;
    }
  }
}

Comments

hdennen created an issue. See original summary.

hdennen’s picture

Issue summary: View changes
rakesh.nimje84@gmail.com’s picture

The related issue is discussed here:
Related Issue

IreneV’s picture

IreneV’s picture

Status: Active » Reviewed & tested by the community
ysamoylenko’s picture

Status: Reviewed & tested by the community » Fixed

Thanks, everyone for your review and participation in the module development.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.