Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 751 through 775 (of 1,893 total)
  • Author
    Search Results
  • #172634

    In reply to: Email after activation

    Henry
    Member

    You could also try Welcome Pack by Paul Gibbs – it allows you to send a welcome email and also customise the various more emails BuddyPress sends out:

    https://wordpress.org/plugins/welcome-pack/

    #172633

    In reply to: Email after activation

    applegateian
    Participant

    Perfect, hopefully somebody finds this useful!

    #172632

    In reply to: Email after activation

    applegateian
    Participant

    Realise I am replying to my own thread, but just came across this:

    Send Welcome email to Users when they activate their account on WordPress & BuddyPress Based Social Network

    Will resolve this thread if it works.

    #172631
    applegateian
    Participant

    Hi guys

    So as far as I understand it, an email is sent to a new user once they sign up for an account, giving them the link to activate their account.

    Once they click the link and activate, an email is sent to the administrator telling them of a new account.

    However, no post-activation email is sent to the user to confirm the success of their registration. Is this possible?

    I’d like to give the new user an email with more context – how to get started, tips, etc, but I can’t see a way to generate this email after activation.

    Is there a method/plugin?

    Thanks,

    Ian

    #172615
    asieger
    Participant

    @hnla; thanks.
    @sooskriszta; i have checked all the spam folder of the emails used, no such mail as the activation email.

    Thanks all
    _ Samuel

    tayenewm
    Participant

    Having so many issues with my BuddyPress install: activation emails not being delivered – invalid activation messages – members can’t upload avatars. Beginning to wonder if BuddyPress is compatible with the theme. Are there any diagnostic tools that can identify the problem?

    Any known issues with the theme?

    http://www.youngwomeninenergy.com
    WP 3.5.2
    BP 1.8.1
    Avada by Themeforest 3.0.1

    thanks in advance,
    taye

    #172420
    SK
    Participant

    @asieger A rather basic question: Have you checked the Spam folders in your email accounts?

    #172390
    Hugo Ashmore
    Participant

    I do hope they didn’t really say could only be fixed by buddypress support. Generally email issues are not BP problems, and currently BP has no issues I’m aware of in sending registration emails, which also is really a WP function.

    Easy check that should have been run first would have been and still ought to be tried is to disable BP and simply try registering an account under WP.

    Often email issues fall under the heading of ‘Domain Record’ issues i.e email servers rejecting an email as it can’t be verified as authorised on the sending domain or there’s no PTR record or SPF record, or simply that the server sendmail is at issue, these though are not really problems that lie with WP or BP which normally happily send out emails.

    Search this forum though as these issues have been discussed many times and you’ll find more info in the archives.

    #172388
    #172285
    applegateian
    Participant

    Yes fair point @henrywright-1 – will add some copy for those users too 🙂

    #172284
    Henry
    Member

    Hi @applegateian

    The activation form is there mainly to give website admininstrators the ability to activate users accounts manually. So, removing the form won’t cause any problems.

    One issue with the text you’ve added to the page – keep in mind any logged out website visitor viewing the activation page will see that text – so “your account has already been activated” won’t always be true.

    #172282
    applegateian
    Participant

    For now I have changed the copy on the activate.php page in my theme to make sense. It still works first time a user visits, but if they do it again, they get a page with some copy that helps them. The key field can never be used anyway.

    Is there a smarter fix?

    #171947
    JLent.
    Participant

    Hello,

    I am using the latest BP and WP and when users click their activation link in their email it sends them to a blank page. Anyone know why?

    Thanks
    J

    #171839
    martinbeaulne
    Participant

    Hi there.

    I am using a tabbed registration page to show a custom group of profile fields upon account creation. Everything works well: the tabbed browsing, the display of the fields, etc.

    The problem is, when I click submit, it only submits the second tab ( the last group of fields ).

    In other words. There are the basic infos about the account, at left, then, at right, the two tabs ( extended profile and custom group ). When I click submit, it only submits the basic account fields and the custom group field. Not the extended profile fields ( on the first tab ).

    I’m using the latest versions.

    Here is the exemple: http://martinbeaulne.com/kinocontact/register/

    Now, here is the code of register.php:

    
    
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Basic - Accessible Tabs Example</title>
        <meta name="author" content="Dirk Ginader">
        <script type="text/javascript">document.documentElement.className += " js";</script>
        <link rel="stylesheet" href="http://www.martinbeaulne.com/kinocontact/wp-content/themes/graphene/buddypress/members/slidingdoors/simple-sliding-doors.css" type="text/css" media="screen">
        <script src="http://www.martinbeaulne.com/kinocontact/wp-content/themes/graphene/buddypress/members/js/jquery-1.9.1.js" type="text/javascript" charset="utf-8"></script>
        <script src="http://www.martinbeaulne.com/kinocontact/wp-content/themes/graphene/buddypress/members/js/jquery.tabs.js" type="text/javascript" charset="utf-8"></script>
        <script type="text/javascript">
    
        $(document).ready(function(){
            $(".tabs").accessibleTabs({
                tabhead:'h2',
                fx:"fadeIn"
            });
        });
    
        </script>    
    </head>
    <body>
    <div id="buddypress">
    
    	<?php do_action( 'bp_before_register_page' ); ?>
    
    	<div class="page" id="register-page">
    
    		<form action="" name="signup_form" id="signup_form" class="standard-form" method="post" enctype="multipart/form-data">
    
    		<?php if ( 'registration-disabled' == bp_get_current_signup_step() ) : ?>
    			<?php do_action( 'template_notices' ); ?>
    			<?php do_action( 'bp_before_registration_disabled' ); ?>
    
    				<p><?php _e( 'User registration is currently not allowed.', 'buddypress' ); ?></p>
    
    			<?php do_action( 'bp_after_registration_disabled' ); ?>
    		<?php endif; // registration-disabled signup setp ?>
    
    		<?php if ( 'request-details' == bp_get_current_signup_step() ) : ?>
    
    			<?php do_action( 'template_notices' ); ?>
    
    			<p><?php _e( 'Registering for this site is easy, just fill in the fields below and we\'ll get a new account set up for you in no time.', 'buddypress' ); ?></p>
    
    			<?php do_action( 'bp_before_account_details_fields' ); ?>
    
    			<div class="register-section" id="basic-details-section">
    
    				<?php /***** Basic Account Details ******/ ?>
    
    				<h4><?php _e( 'Account Details', 'buddypress' ); ?></h4>
    
    				<label for="signup_username"><?php _e( 'Username', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    				<?php do_action( 'bp_signup_username_errors' ); ?>
    				<input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value(); ?>" />
    
    				<label for="signup_email"><?php _e( 'Email Address', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    				<?php do_action( 'bp_signup_email_errors' ); ?>
    				<input type="text" name="signup_email" id="signup_email" value="<?php bp_signup_email_value(); ?>" />
    
    				<label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    				<?php do_action( 'bp_signup_password_errors' ); ?>
    				<input type="password" name="signup_password" id="signup_password" value="" />
    
    				<label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    				<?php do_action( 'bp_signup_password_confirm_errors' ); ?>
    				<input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" />
    
    			</div><!-- #basic-details-section -->
    
    			<?php do_action( 'bp_after_account_details_fields' ); ?>
    
    			<?php /***** Extra Profile Details ******/ ?>
    
    			<?php if ( bp_is_active( 'xprofile' ) ) : ?>
    
    				<?php do_action( 'bp_before_signup_profile_fields' ); ?>
    
    				<div class="register-section" id="profile-details-section">
    
    					
    				<div class="tabs"> <!-- Le div des tabs -->
    				<h2>Extended profile</h2>
    				<div class="tabbody"> <!-- Le div de la première section -->
    					<h4><?php _e( 'Profile Details', 'buddypress' ); ?></h4>
    
    					<?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?>
    					<?php if ( bp_is_active( 'xprofile' ) ) : if ( bp_has_profile( 'profile_group_id=1' ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    
    					<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    
    						<div class="editfield">
    
    							<?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>
    
    								<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    								<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    								<input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" />
    
    							<?php endif; ?>
    
    							<?php if ( 'textarea' == bp_get_the_profile_field_type() ) : ?>
    
    								<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    								<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    								<textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_edit_value(); ?></textarea>
    
    							<?php endif; ?>
    
    							<?php if ( 'selectbox' == bp_get_the_profile_field_type() ) : ?>
    
    								<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    								<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    								<select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>">
    									<?php bp_the_profile_field_options(); ?>
    								</select>
    
    							<?php endif; ?>
    
    							<?php if ( 'multiselectbox' == bp_get_the_profile_field_type() ) : ?>
    
    								<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    								<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    								<select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" multiple="multiple">
    									<?php bp_the_profile_field_options(); ?>
    								</select>
    
    							<?php endif; ?>
    
    							<?php if ( 'radio' == bp_get_the_profile_field_type() ) : ?>
    
    								<div class="radio">
    									<span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span>
    
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    									<?php bp_the_profile_field_options(); ?>
    
    									<?php if ( !bp_get_the_profile_field_is_required() ) : ?>
    										<a class="clear-value" href="javascript:clear( '<?php bp_the_profile_field_input_name(); ?>' );"><?php _e( 'Clear', 'buddypress' ); ?></a>
    									<?php endif; ?>
    								</div>
    
    							<?php endif; ?>
    
    							<?php if ( 'checkbox' == bp_get_the_profile_field_type() ) : ?>
    
    								<div class="checkbox">
    									<span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span>
    
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    									<?php bp_the_profile_field_options(); ?>
    								</div>
    
    							<?php endif; ?>
    
    							<?php if ( 'datebox' == bp_get_the_profile_field_type() ) : ?>
    
    								<div class="datebox">
    									<label for="<?php bp_the_profile_field_input_name(); ?>_day"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    									<select name="<?php bp_the_profile_field_input_name(); ?>_day" id="<?php bp_the_profile_field_input_name(); ?>_day">
    										<?php bp_the_profile_field_options( 'type=day' ); ?>
    									</select>
    
    									<select name="<?php bp_the_profile_field_input_name(); ?>_month" id="<?php bp_the_profile_field_input_name(); ?>_month">
    										<?php bp_the_profile_field_options( 'type=month' ); ?>
    									</select>
    
    									<select name="<?php bp_the_profile_field_input_name(); ?>_year" id="<?php bp_the_profile_field_input_name(); ?>_year">
    										<?php bp_the_profile_field_options( 'type=year' ); ?>
    									</select>
    								</div>
    
    							<?php endif; ?>
    
    							<?php do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); ?>
    
    							<?php if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?>
    								<p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    									<?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> <a href="#" class="visibility-toggle-link"><?php _ex( 'Change', 'Change profile field visibility level', 'buddypress' ); ?></a>
    								</p>
    
    								<div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>">
    									<fieldset>
    										<legend><?php _e( 'Who can see this field?', 'buddypress' ) ?></legend>
    
    										<?php bp_profile_visibility_radio_buttons() ?>
    
    									</fieldset>
    									<a class="field-visibility-settings-close" href="#"><?php _e( 'Close', 'buddypress' ) ?></a>
    
    								</div>
    							<?php else : ?>
    								<p class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    									<?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?>
    								</p>
    							<?php endif ?>
    
    							<?php do_action( 'bp_custom_profile_edit_fields' ); ?>
    
    							<p class="description"><?php bp_the_profile_field_description(); ?></p>
    
    						</div>
    
    					<?php endwhile; ?>
    
    					<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids(); ?>" />
    
    					<?php endwhile; endif; endif; ?>
    				</div> <!-- Le div de la première section -->
    				<h2>Custom group</h2>
    				<div class="tabbody"> <!-- Le div de la deuxième section -->
    					<h4><?php _e( 'Profile Details', 'buddypress' ); ?></h4>
    
    					<?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?>
    					<?php if ( bp_is_active( 'xprofile' ) ) : if ( bp_has_profile( 'profile_group_id=4' ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    
    					<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    
    						<div class="editfield">
    
    							<?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>
    
    								<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    								<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    								<input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" />
    
    							<?php endif; ?>
    
    							<?php if ( 'textarea' == bp_get_the_profile_field_type() ) : ?>
    
    								<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    								<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    								<textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_edit_value(); ?></textarea>
    
    							<?php endif; ?>
    
    							<?php if ( 'selectbox' == bp_get_the_profile_field_type() ) : ?>
    
    								<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    								<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    								<select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>">
    									<?php bp_the_profile_field_options(); ?>
    								</select>
    
    							<?php endif; ?>
    
    							<?php if ( 'multiselectbox' == bp_get_the_profile_field_type() ) : ?>
    
    								<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    								<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    								<select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" multiple="multiple">
    									<?php bp_the_profile_field_options(); ?>
    								</select>
    
    							<?php endif; ?>
    
    							<?php if ( 'radio' == bp_get_the_profile_field_type() ) : ?>
    
    								<div class="radio">
    									<span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span>
    
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    									<?php bp_the_profile_field_options(); ?>
    
    									<?php if ( !bp_get_the_profile_field_is_required() ) : ?>
    										<a class="clear-value" href="javascript:clear( '<?php bp_the_profile_field_input_name(); ?>' );"><?php _e( 'Clear', 'buddypress' ); ?></a>
    									<?php endif; ?>
    								</div>
    
    							<?php endif; ?>
    
    							<?php if ( 'checkbox' == bp_get_the_profile_field_type() ) : ?>
    
    								<div class="checkbox">
    									<span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span>
    
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    									<?php bp_the_profile_field_options(); ?>
    								</div>
    
    							<?php endif; ?>
    
    							<?php if ( 'datebox' == bp_get_the_profile_field_type() ) : ?>
    
    								<div class="datebox">
    									<label for="<?php bp_the_profile_field_input_name(); ?>_day"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    									<select name="<?php bp_the_profile_field_input_name(); ?>_day" id="<?php bp_the_profile_field_input_name(); ?>_day">
    										<?php bp_the_profile_field_options( 'type=day' ); ?>
    									</select>
    
    									<select name="<?php bp_the_profile_field_input_name(); ?>_month" id="<?php bp_the_profile_field_input_name(); ?>_month">
    										<?php bp_the_profile_field_options( 'type=month' ); ?>
    									</select>
    
    									<select name="<?php bp_the_profile_field_input_name(); ?>_year" id="<?php bp_the_profile_field_input_name(); ?>_year">
    										<?php bp_the_profile_field_options( 'type=year' ); ?>
    									</select>
    								</div>
    
    							<?php endif; ?>
    
    							<?php do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); ?>
    
    							<?php if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?>
    								<p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    									<?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> <a href="#" class="visibility-toggle-link"><?php _ex( 'Change', 'Change profile field visibility level', 'buddypress' ); ?></a>
    								</p>
    
    								<div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>">
    									<fieldset>
    										<legend><?php _e( 'Who can see this field?', 'buddypress' ) ?></legend>
    
    										<?php bp_profile_visibility_radio_buttons() ?>
    
    									</fieldset>
    									<a class="field-visibility-settings-close" href="#"><?php _e( 'Close', 'buddypress' ) ?></a>
    
    								</div>
    							<?php else : ?>
    								<p class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    									<?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?>
    								</p>
    							<?php endif ?>
    
    							<?php do_action( 'bp_custom_profile_edit_fields' ); ?>
    
    							<p class="description"><?php bp_the_profile_field_description(); ?></p>
    
    						</div>
    
    					<?php endwhile; ?>
    
    					<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids(); ?>" />
    
    					<?php endwhile; endif; endif; ?>
    			</div> <!-- Le div de la deuxième section -->
    			</div> <!-- le div des tabs -->
    
    			</div><!-- #profile-details-section -->
    
    				<?php do_action( 'bp_after_signup_profile_fields' ); ?>
    
    			<?php endif; ?>
    
    			<?php if ( bp_get_blog_signup_allowed() ) : ?>
    
    				<?php do_action( 'bp_before_blog_details_fields' ); ?>
    
    				<?php /***** Blog Creation Details ******/ ?>
    
    				<div class="register-section" id="blog-details-section">
    
    					<h4><?php _e( 'Blog Details', 'buddypress' ); ?></h4>
    
    					<p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new site', 'buddypress' ); ?></p>
    
    					<div id="blog-details"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?>class="show"<?php endif; ?>>
    
    						<label for="signup_blog_url"><?php _e( 'Blog URL', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    						<?php do_action( 'bp_signup_blog_url_errors' ); ?>
    
    						<?php if ( is_subdomain_install() ) : ?>
    							http:// <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value(); ?>" /> .<?php bp_blogs_subdomain_base(); ?>
    						<?php else : ?>
    							<?php echo home_url( '/' ); ?> <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value(); ?>" />
    						<?php endif; ?>
    
    						<label for="signup_blog_title"><?php _e( 'Site Title', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    						<?php do_action( 'bp_signup_blog_title_errors' ); ?>
    						<input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value(); ?>" />
    
    						<span class="label"><?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?>:</span>
    						<?php do_action( 'bp_signup_blog_privacy_errors' ); ?>
    
    						<label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes', 'buddypress' ); ?></label>
    						<label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No', 'buddypress' ); ?></label>
    
    					</div>
    
    				</div><!-- #blog-details-section -->
    
    				<?php do_action( 'bp_after_blog_details_fields' ); ?>
    
    			<?php endif; ?>
    
    			<?php do_action( 'bp_before_registration_submit_buttons' ); ?>
    
    			<div class="submit">
    				<input type="submit" name="signup_submit" id="signup_submit" value="<?php _e( 'Complete Sign Up', 'buddypress' ); ?>" />
    			</div>
    
    			<?php do_action( 'bp_after_registration_submit_buttons' ); ?>
    
    			<?php wp_nonce_field( 'bp_new_signup' ); ?>
    
    		<?php endif; // request-details signup step ?>
    
    		<?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?>
    
    			<?php do_action( 'template_notices' ); ?>
    			<?php do_action( 'bp_before_registration_confirmed' ); ?>
    
    			<?php if ( bp_registration_needs_activation() ) : ?>
    				<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>
    			<?php else : ?>
    				<p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ); ?></p>
    			<?php endif; ?>
    
    			<?php do_action( 'bp_after_registration_confirmed' ); ?>
    
    		<?php endif; // completed-confirmation signup step ?>
    
    		<?php do_action( 'bp_custom_signup_steps' ); ?>
    
    		</form>
    
    	</div>
    
    	<?php do_action( 'bp_after_register_page' ); ?>
    
    </div><!-- #buddypress -->
    
        <script type="text/javascript">
        var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
        document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
        </script>
        <script type="text/javascript">
        var pageTracker = _gat._getTracker("UA-299719-2");
        pageTracker._initData();
        pageTracker._trackPageview();
        </script>
    </body>
    </html>
    

    Thanks for your help…

    #171746
    totoff
    Participant

    hi,
    i am having the same problem i can’t receive the activation email.
    i tried with severals email adress but it is still the same.
    amy idea,

    Thanks,

    Christophe

    #171727

    In reply to: Email Activation

    asieger
    Participant

    Hi @mercime,

    I received activation email when i installed wp-client earlier, but i don’t know why i don’t get the activation mail for buddypress. The Website is hosted with Supremecluster in the US.

    Please, could it be from my host or probably from wrong settings?

    Thanks
    -Samuel

    #171709

    In reply to: Email Activation

    @mercime
    Participant

    Can you receive an activation mail if you deactivate BuddyPress? Where are you hosted? Have you checked out possible solutions at https://codex.buddypress.org/troubleshooting/frequently-asked-questions/ ?

    #171707

    In reply to: Email Activation

    @mercime
    Participant

    closing this topic in favor of same at https://buddypress.org/support/topic/email-activation-2/

    #171695

    Topic: Email Activation

    in group forum Installing BuddyPress
    asieger
    Participant

    Hello techies,

    Please am having a bit of issue with Buddypress registration. Once a new user registers, upon successful completion, the system generates an update saying “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”. but i didn’t get the activation email in my box.

    I repeat the process severally with different email accounts but i still don’t get the activation mail but the users are listed on the wp-admin dashboard. please could there be something am getting wrong? kindly advise…

    Here’s the site: “http://www.anarola.com/register&#8221; you can test as well.

    Regard
    -Samuel

    #171693

    Topic: Email Activation

    in group forum Installing BuddyPress
    asieger
    Participant

    Hello techies,

    Please am having a bit of issue with Buddypress registration. Once a new user registers, upon successful completion, the system generates an update saying “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”. but i didn’t get the activation email in my box.

    I repeat the process severally with different email accounts but i still don’t get the activation mail but the users are listed on the wp-admin dashboard. please could there be something am getting wrong? kindly advise…

    Regard
    -Samuel

    #171674
    Paul Wong-Gibbs
    Keymaster

    BP has a very old bug where some activation keys didn’t work correctly. I have not looked into this for some months but, if I remember correctly, the issue was very hard for a developer to re-produce to be able to try to find out what the bug was.

    Also, it’s possible that some site configurations might cause a problem. Does the activation link in the emails link to the correct site? Is the URL correct?

    bandychris
    Participant

    Hi

    I have done basic trouble shooting on my site for activation key email link not working -“invalid activation key” error.

    I have no plugins installed but buddypress and standard theme.

    Can you please give me some ideas as to what to do?

    #171557
    asieger
    Participant

    i’m still having some issues with the buddypress platform. I filled the registration form and i got a success message saying the activation code has been sent to my email. When i checked my mail box, i couldn’t find the activation mail from yesterday 15:00hrs GMT till now.

    Please what do i need to do to fix this issue?
    Also, what’s the landing page for already registered members?

    I’ll appreciate your response greatly.

    Regards
    -Samuel

    bgt9752
    Participant

    team.RacingforRecovery.com

    Recently it was brought to my attention that new users were no longer able to register on our site. I’ve updated WP to 3.6.1, BP to 1.8.1, updated and deactivated for testing all other plugins, update current theme to most recent version, switched themes to bp_default and twenty…’s.

    None of the above things work. What happens is when the user completes the registration page, it simply refreshes without go to the activation page. The user does not receive an activation email, nor do they appear in the user list in WP.

    Thoughts?

    Thanks in advance. Jake

Viewing 25 results - 751 through 775 (of 1,893 total)
Skip to toolbar