Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 1,776 through 1,800 (of 7,641 total)
  • Author
    Search Results
  • #258107
    gokhank
    Participant

    thanks mate for the update but when I make this my registration page become blank and still it’s still the same buddypress registration page, does not redirect to default WP registration page.

    Can the template which I use be the reason for this ?

    #258100

    In reply to: New Privacy Plugin

    danbp
    Participant

    Updated to 0.6

    It’s better now for friends but very restrictive for logged in user only.

    When a user choose “only logged in users”, and myself as not logged trying to see his profile, i’m redirected to register page when i click on the member name.

    – without a specific message telling me why i’m invited to register, it is un understandable. Also you can’t presume the status of a visitor. I can visit the site i’m a member of without login systematicaly. As non logged, but virtually a member, being leaded to registration is ambigous.

    – could be as option, but as default for that status, it is too restrictive. I should see at least his activity. And if i click on the profile item, i may see “You must be logged in to access this user profile information”. Something like that.

    #258009
    danbp
    Participant

    Try this (goes to bp-custom.php )

    function my_disable_bp_registration() {
    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
    remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' ); 
    function my_redirect_signup_page(){
    	//return wp_registration_url(); 
    	return bp_get_root_domain() . '/wp-signup.php';
    }
    add_filter( 'bp_get_signup_page', 'my_redirect_signup_page' ); 
    #257946
    kfye
    Participant

    I’m building a site meant for a closed, private community. It is necessary for me to have the entire site password-protected.

    The problem is that I have a list of people I want to add as subscribers, but since the site is password-protected, they can’t access a registration page. Catch 22. Obviously I need to add the subscribers myself, but there is a long list of them. Doing each one by one will take forever.

    Here’s what I’m hoping: does anyone know a way to upload a csv file with subscriber names and emails, and to a sort of “bulk registration”?

    #257884
    Kuma20
    Participant

    Hi,

    I need to add buddypress 2nd registration form but without email or password. just username may be, with some custom fields.

    Example: Teacher register from main register plugin and add students ( using 2nd register form) to the database, students also will have profiles with these data.

    Is this something possible, buddypress can do? Any plugins?

    Thanks!

    #257852
    gokhank
    Participant

    Hi,

    It should be simple but I need help to solve it urgently. How can I convert back to buddypress registration page to original wordpress registration page?

    I do not want to use only buddypresss registration page, I want to keep the rest but I couldn’t find any way to revert it back to default wordpres version.

    Thanks in advance.

    lewis1202
    Participant

    Hi,

    all BuddyPress pages are displaying correctly. I can click on other profiles, the registration page, etc. Those are working. But if I click on My Account, or I log into another account I’ve created on a different PC, same thing happens. I see nothing.

    Any help would be much appreciated.

    Thanks

    #257768
    magicvish
    Participant

    Hi we are having an error show up on our page

    one is an error coming up on registration : page
    http://imgur.com/a/QQlNHthe

    Warning: array_merge(): Argument #2 is not an array in /home/asianins/public_html/thebettinguniversity.org/wp-content/plugins/buddypress/bp-core/bp-core-taxonomy.php on line 132

    Warning: Invalid argument supplied for foreach() in /home/asianins/public_html/thebettinguniversity.org/wp-includes/functions.php on line 3507

    how can we solve this please

    ziumzium
    Participant

    Hi I wanna change registration layaout with cornerstone
    Every time I want see this http://localhost/meetmate/register
    The site redirecting me to http://localhost/meetmate

    I have made child theme
    I’ve tried adding this to functions.php

    	add_action( 'init', 'signup_redirect_remove_init', 9 );
    function signup_redirect_remove_init(){
    	remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
    }

    or

    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
    remove_action( 'bp_screens', 'bp_core_screen_signup' );

    but I still can’t get on this page.

    Thanks for help

    I’m using X theme. And newest versions of buddypress

    Is there is any chance to use corner-stone/visual-editor or page builder to edit registration site or i’m only able to edit it by overwriting register.php ?

    #257707

    In reply to: Redirect does not work

    Paul Wong-Gibbs
    Keymaster

    Welcome Pack! Small world.

    Can you try disabling Welcome Pack? That certainly interferes with user registration.
    Please also try disabling iThemes Security.

    Then, test registration again, and see what happens.

    If it still doesn’t work as expected, if you can switch your theme to one of the default WordPress themes (leaving those two plugins disabled), test again. If you have a test environment (say you might be using Pantheon hosting, for example), this should be easy to do, though if it’s only one server, I appreciate you might not want to modify your production site too much.

    mrjarbenne
    Participant

    This won’t help your spam issue, that’s another matter, but it will remove the user registration updates on your activity stream (among other activity types, depending on how you configure the plugin)

    https://github.com/lenasterg/buddypress-block-activity-stream-types-ls

    gringotree
    Participant

    I have read through a great portion of the topics but I haven’t come across anything useful.

    On my website we use bbpress but I haven’t been able to maximize the use of site wide activity because spammers are landing on the site and spamming new and existing members. I have managed to trace it to a feature in the activity stream that displays when a member registers for the page and also when they update their profile settings (picture, bio, etc). I would like to find a way of removing member profile activity and registration from the Site wide activity stream but I can’t find anywhere in the bbpress setting that will do this? I would like to prevent this from ever appearing in the stream. My only option at this point is to manually go and change the display settings for each post. This just isn’t possible for me to stay ahead of this?

    Can anyone offer any suggestions on how to remidy this problem? I should also mention I am not a programmer but I do have access to one so any advice would be extremely helpful

    #257676

    In reply to: Redirect does not work

    danbp
    Participant

    BP’s target the page, not the register process. In brief, BP shows the wp-login page. For internal purpose only, BP needs a registration page to fit with WP.

    But it’s not an ordinary wp page, just a placeholder, or “internal address” if this is clearer to you.

    Normally, by default, once his registration is fullfiled, the user is redirected to your-site/register/ where he see Check Your Email To Activate Your Account! .

    Check your theme settings or theme’s functions.php if it contains some redirect to homepage.

    #257673

    In reply to: Redirect does not work

    fail2reap
    Participant

    @danbp Sorry I don’t quite understand, you state that Buddypress does not support it yet it has settings to set a registration page target. I am a little confused atm. See screenshot here https://postimg.org/image/75m1ue6a1/


    @djpaul
    Thanks for your reply. Well the thing is, after the user sends the registration form the user then get’s redirected to the home page by defaut. I want to instead redirect them to a page with exactly what you had said “check your email for confirmation link”

    #257672

    In reply to: Redirect does not work

    Paul Wong-Gibbs
    Keymaster

    @fail2reap So… after the user sends the registration form, rather than go to the page that says something like “check your email for an activation link”, you want to redirect them somewhere else?

    Paul Wong-Gibbs
    Keymaster

    Do other BuddyPress emails get sent?
    Do WordPress emails get sent? (comment notification, new user registration, etc).

    #257660
    wpsoul
    Participant

    @djpaul

    You didn’t understand me. Issue is only on pages where you can edit profile (after registration) http://screencast.com/t/75XoU8a5sz

    After registration, go to your profile and edit it. For example, you have in select 3 options, choose second option. Save profile. Edit again. You will see that 1 option is selected (must be second). It can confuse user, because he can think that save option is not working. This is only in Firefox

    #257620

    In reply to: Redirect does not work

    danbp
    Participant

    Hi,

    BuddyPress doesn’t handle registration. That’s WordPress territory.

    You may read about WP two step authentication:
    https://codex.wordpress.org/Two_Step_Authentication

    And here’s a tutorial from which you can built a multi step authentication:

    Building a Multi-step Registration Form for WordPress

    Good luck !

    anonymousse2
    Participant

    Thank you very much @danbp.
    I shall have another small question for you if him you are willing:
    Do you know how can prevent the users from modifying one profile fields of type “Dropdown selector” ? That is they can fill this field while their registration, and then that it is not modifiable any more, but that he remains at least shown on the profile.

    Thank you in advance for your help

    rebelangelo
    Participant

    Hi,

    I am getting notifications email like new friendship, comments, etc.. but can’t get new registration activation email.

    I’ve install facebook-login plugin and seems like it blocked buddypress registration mail I think. However, when I deleted this plugin I still couldn’t get activation email.

    I tried to repair buddypress from Tools->Buddypress and still have this problem

    Also I am using WP-Mail-SMTP for this email actions.

    My budyypress version is 2.6.1.1

    Thanks

    #257574
    wpsoul
    Participant

    Check registration page with enabled select field in Xprofiles. Also, the same is in edit page in profile.

    Problem that in Firefox, all selects ignore selected=”selected” and shows default first option in select. You can fix this with adding autocomplete=”off”

    #257560
    veresku
    Participant

    but function bp_get_email use this code
    $args = array(
    ‘no_found_rows’ => true,
    ‘numberposts’ => 1,
    ‘post_status’ => ‘publish’,
    ‘post_type’ => bp_get_email_post_type(),
    ‘suppress_filters’ => false,

    ‘tax_query’ => array(
    array(
    ‘field’ => ‘slug’,
    ‘taxonomy’ => bp_get_email_tax_type(),
    ‘terms’ => $email_type,
    )
    ),
    );
    and searches terms by slug, in my situation $email_type = ‘core-user-registration’, but in database slug is ‘383-102’, and of course I have WP_Error.
    The question is why during creating taxonomy terms slug is broken?

    #257559
    veresku
    Participant

    I looked at terms table, found term with name=’core-user-registration’ and I saw that slug is ‘383-102’

    veresku
    Participant

    Hello,

    After updating my site does not send email with activation link. I debug the new code and the function bp_get_email returns this error:
    WP_Error Object
    (
    [errors] => Array
    (
    [missing_email] => Array
    (
    [0] => bp_get_email
    )

    )

    [error_data] => Array
    (
    [missing_email] => Array
    (
    [0] => core-user-registration
    [1] => Array
    (
    [no_found_rows] => 1
    [numberposts] => 1
    [post_status] => publish
    [post_type] => bp-email
    [suppress_filters] =>
    [tax_query] => Array
    (
    [0] => Array
    (
    [field] => slug
    [taxonomy] => bp-email-type
    [terms] => core-user-registration
    )

    )

    )

    )

    )

    )

    In admin panel I can see only buddypress email but I cannot see any terms for it

    Please help me to resolve this problem

    Thank you, Tiana

    Marc
    Participant

    Hi,

    The registration email works just fine in English. The site is translated with WPML, the WPML settings say that BuddyPress Emails should be translated. I went to Emails -> All Emails and translated the “Activate Your Account” email, leaving the exact same formatting as the original one.

    Now when a new user registers on the French site, it says to check for an email to activate but the email never gets sent. Even if I go in the back-end and resend the email I get no error message but the message doesn’t get sent.

    What did I miss?

    Thanks

Viewing 25 results - 1,776 through 1,800 (of 7,641 total)
Skip to toolbar