Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/27/2009 10:41:10 AM (16 years ago)
Author:
apeatling
Message:

Single WP support. Yes, you read that correctly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/registration/register.php

    r2170 r2209  
    1212            <?php if ( 'request-details' == bp_get_current_signup_step() ) : ?>
    1313
    14                 <h2 class="pagetitle"><?php _e( 'Create an Account', 'buddypress' ) ?></h2>
     14                <h2><?php _e( 'Create an Account', 'buddypress' ) ?></h2>
    1515
    1616                <?php do_action( 'template_notices' ) ?>
     
    161161                <?php do_action( 'bp_after_signup_profile_fields' ) ?>
    162162
    163                 <?php if ( 'all' == bp_get_signup_allowed() || 'blog' == bp_get_signup_allowed() ) : ?>
     163                <?php if ( bp_core_is_multiblog_install() && 'all' == bp_get_signup_allowed() || 'blog' == bp_get_signup_allowed() ) : ?>
    164164
    165165                    <?php do_action( 'bp_before_blog_details_fields' ) ?>
     
    216216            <?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?>
    217217
    218                 <h2 class="pagetitle"><?php _e( 'Sign Up Complete!', 'buddypress' ) ?></h2>
     218                <h2><?php _e( 'Sign Up Complete!', 'buddypress' ) ?></h2>
    219219
    220220                <?php do_action( 'template_notices' ) ?>
    221221
    222                 <p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ) ?></p>
     222                <?php if ( bp_registration_needs_activation() ) : ?>
     223                    <p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ) ?></p>
     224                <?php else : ?>
     225                    <p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ) ?></p>
     226                <?php endif; ?>
    223227
    224228                <?php if ( !(int)get_site_option( 'bp-disable-avatar-uploads' ) ) : ?>
     
    227231
    228232                        <h3><?php _e( 'Your Current Avatar', 'buddypress' ) ?></h3>
    229                         <p><?php _e( "We've fetched an avatar for your new account. If you'd like to change this, why not upload a new one while you wait for your activation email?", 'buddypress' ) ?></p>
     233                        <p><?php _e( "We've fetched an avatar for your new account. If you'd like to change this, why not upload a new one?", 'buddypress' ) ?></p>
    230234
    231235                        <div id="signup-avatar">
Note: See TracChangeset for help on using the changeset viewer.