Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 5,651 through 5,675 (of 7,642 total)
  • Author
    Search Results
  • #102591
    reedjholmes
    Member

    Hi David, thanks for the suggestions.

    I double checked that my admin email was correct on the Settings page. The email account is hosted on the same server as the website (e.g. webmaster@scotiasurfer.com).

    I am receiving friend requests, etc., so the email is working. I’m just not getting the New User Registration notifications.

    I also tried to change the admin email to a gmail account. Still no luck getting the New User Registration notifications.

    #102516
    pcwriter
    Participant
    #102507
    thealchemist
    Member

    So the instructions for “automatic conversion” aren’t very thorough cuz I keep discovering pages not listed that need to be manually converted. Registration and activation pages etc.

    But here’s a different ? regarding customization. I am trying to get the member profile/login section into the sidebar. http://xtreme.transmutationsciences.com/activity and I have copied some code from another theme and have gotten that section in there. However, as you can see, the subsequent widgets aren’t cooperating and acting as if the login box was right justified.

    The original sidebar was:
    `

    `

    The significant item in the other theme’s code is “

    When I copied the new sidebar I originally kept their version of the sidebar hook. But the section did not display. When I substituted “ the section displayed but then I have the alignment problem.

    Can anyone diagnose my ineptitude?

    Full sidebar code from the theme I an borrowing the code from.
    `

    <?php printf( __( ' You can also create an account.’, ‘buddypress’ ), site_url( BP_REGISTER_SLUG . ‘/’ ) ) ?>

    <form name="login-form" id="sidebar-login-form" class="standard-form" action="” method=”post”>

    <input type="text" name="log" id="sidebar-user-login" class="input" value="” />

    <input type="submit" name="wp-submit" id="sidebar-wp-submit" value="” tabindex=”100″ />

    `

    #102497
    thealchemist
    Member

    @pcwriter … Actually, the post may be old, but I just posted the other day … so thanks for your fast response! And, yes, @mercime is correct – we now learn more and can use the plugin more effectively.

    #102496
    David Carson
    Participant

    I’d double-check that the admin email is correct at yourdomain.com/wp-admin/options-general.php

    Then, make sure that the emails aren’t being zapped by your SPAM filter.

    Do you get regular BuddyPress notifications (friend requests, private messages, etc.) to the admin email?

    Is your email hosted on the same server as your site? You might try switching the admin email to gmail or whatever to see if the emails go to that other account. Because if your email account is the same as your website domain but you host your email elsewhere (ex. Rackspace, Google Apps), your server might be trying to send the message locally.

    stefanbg
    Member

    Hello,
    I have stumbled to this topic while searching how to change the time of activation link before it expires.
    So, @kriskl how much time it takes before activation link expires when registering to your site?
    I have similar problem. The default time of 2 hours looks like very insufficient for users. We have almost no spam registrations and still there are many abandoned registrations.
    On the net there is no easily reachable info how to change this configuration. I have posted two threads on WP.com, still no news. Hope some of you people can help or give an idea where is that php that sets the time period.

    10x

    #102429
    @mercime
    Participant

    @pcwriter even though you answered a 5-month-old question, the information you gave is still valid and will help others who would like to know how to use s2member effectively :-)

    #102421
    pcwriter
    Participant

    Oops! Just noticed this thread is 5 months old :-(

    @thealchemist

    Make sure registration is enabled for your site.
    For single WP install, go to ‘Settings’ > ‘General’ and check ‘Anyone can register’.
    For a multisite install, go to ‘Super Admin’ > ‘Options’ and select an option at ‘Allow new registrations’.

    #102420
    pcwriter
    Participant

    @cdragin

    There is actually a rather easy way to accomplish what you want done.with s2member.

    New users are redirected to the homepage upon activation of their account. Using s2member’s API/Scripting, it’s quite simple to set up a page to display different content to not-logged-in visitors and logged-in members whose subscription level=0 (free membership).

    1 – Create a page and assign it to ‘Front page displays’ under ‘Settings’ > ‘Reading’. That’s your new homepage.
    2 – Under ‘s2member’ > ‘API/Scripting’, go to ‘Using Simple Conditionals’ and study the example codes given. You can customize the content on your frontpage to display the PayPal buttons ONLY to registered members with a level=0. You can also set it up for incremental upgrade prompts according to the current membership level (s2member is really cool in that regard!).
    3 – Under ‘s2member’ > ‘General Options > ‘Login Welcome Page’, you can redirect users to their BP profile when they login with this: http://YOUR-SITE.com/members/%%current_user_login%%/profile/

    Now create your register page the way you want it, and have your users sign up in the usual way. (Perhaps include some info on that page informing them that will have the opportunity to select their membership options after activating their account.) They will be redirected to your frontpage upon activation and will then see your PayPal subscription button(s) displayed prominently, all the goodies that come with paid membership, and a hearty prompt to “pay their dues”.

    Hope this helps! :-)

    #102415
    thealchemist
    Member

    I have an even more basic problem at the moment … I can’t get the registration page to work.

    Every time you click on it you get redirected to the home page. Have I simply missed something in the configuration? Sample at xtreme.transmutationsciences.com

    #102372
    deadlyhifi
    Participant

    Been messing around with adding custom usermeta data at signup and have come up with the following:

    `function bp_custom_user_signup() { ?>

    <?php
    }

    add_action(‘bp_before_registration_submit_buttons’, ‘bp_custom_user_signup’);

    // Add field_name from sign-up to usermeta on registration
    function bp_user_activate_field( $signup ) {

    update_usermeta( $signup, ‘name_of_field_in_template’, apply_filters( ‘get_name_of_field_in_template_value’, $_POST ) );

    return $signup;
    }
    add_filter( ‘user_register’, ‘bp_user_activate_field’ );
    `
    Note that this data is put into the database at the point of registration, not at user activation as the original example suggested – but I couldn’t get that to work.

    #102146

    Sorry for any confusion. In the top menu bar click the “Sign-up” link and look at the registration boxes and you will see that they are aligned to the left of the theme. I am trying to get all the pages in buddypress to align with theme. If you set up an account you will see that all of the pages are aligned to the far left of the screen.

    #102118
    bgrun80
    Participant

    Thanks for the quick replies.

    @modemlooper: When I tried your code, it gave me this…
    Warning: Division by zero in C:xampplitehtdocswp-contentthemespartyhookupsindex.php on line 10
    Warning: Cannot modify header information – headers already sent by (output started at C:xampplitehtdocswp-contentthemespartyhookupsindex.php:4) in C:xampplitehtdocswp-includespluggable.php on line 890

    @Jalien: I will give it a shot, but I’d really prefer to use my own code and keep plugins to a minimum

    I tried this and it worked, but I’m wondering if it will break something else or if it’s bad programming practice. Any thoughts?

    if ( !is_user_logged_in() ) :
    global $bp;
    $bp->signup->step = ‘request-details’;
    locate_template( array( ‘registration/register.php’ ), true );
    else :
    index.php as usual

    #102114
    bgrun80
    Participant

    Also, I tried doing:

    /* If not logged in, the user will be redirected to the registration/login page */
    if ( !is_user_logged_in() ) :
    include ‘registration/register.php’;
    else :
    index.php as normal

    but that didn’t work either…

    #102003
    Andrea Rennick
    Participant

    And what are your registration settings under Super Admin -> Options?

    #101981
    sienteastu
    Participant

    Try to put the plugin: si-captcha-for-wordpress, this works on buddypress.

    #101975
    ultimateuser
    Participant

    Topic closes. I solved this by moving the form into a New Field Group

    Paul Wong-Gibbs
    Keymaster

    It’s not caused by the BuddyPress registration process, I can tell you that much :)

    Paul Wong-Gibbs
    Keymaster

    Yeah, exactly. But I suggested a widget as that’s probably easier for most people to use rather than creating custom page templates.

    #101860
    Hugo Ashmore
    Participant

    This issue is one that has been discussed at length in various threads over the months here, and many approaches to tackling the issue are given.

    Please do a search for these threads and have a detailed read through and implement a few of the suggestions they provide.

    #101859
    semir
    Member

    Hi,
    I had the same problem I have commented from line 174 to line 199 in the
    registration/register.php (in child theme)
    Here the code

    <div id="blog-details"class="show">
    
    	<span class="label">
    		<input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1" checked="checked" /> 	
    	</span>
    
    	<label for="signup_blog_url">
    		<input type="text" name="signup_blog_url" id="signup_blog_url" value="" />
    		<input type="text" name="signup_blog_url" id="signup_blog_url" value="" />
    	</label>
    
    	<label for="signup_blog_title"> 
    		<input type="text" name="signup_blog_title" id="signup_blog_title" value="" />
    	</label>
    	
    	 <label>
    		<input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public" checked="checked" /> 
    	</label>
    
    	<label>
    		<input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private" checked="checked" />
    	</label>
    
    </div>
    #101853
    thesurfinstitute
    Participant

    Just an update in case anyone else comes across the same issue…

    Also had to edit the sidebar-login settings within style-light.css in order for it to be displayed properly.

    #101845
    thesurfinstitute
    Participant

    I managed to make it work by adding width and margin settings at the top of the form.standard-form in my style-light.css

    In any event here’s my register.php:
    http://pastebin.com/6RuKyJu4

    #101843
    Virtuali
    Participant

    Put your theme’s “register.php” over at http://pastebin.com then post link here. I’ll take a look at it.

    The <div content Wrapper could be missing

    techguy
    Participant

    @Mouchoirs Do a search for “Private Buddypress site” or something like that and you’ll find lots of threads on how to redirect non-logged in users to the login or registration page.

    @djpaul,
    Seems like you should be able to just replicate the user account creation calls on another page right? This is something I was considering doing for my project. Basically, someone could upload a list of email addresses and names, and it would create the person’s account, email them a temp password and they’d be good to go. Yes, I know WP use to do temp password and took that out, but in this case it might be useful to do.

Viewing 25 results - 5,651 through 5,675 (of 7,642 total)
Skip to toolbar