Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wp user activate'

Viewing 25 results - 51 through 75 (of 902 total)
  • Author
    Search Results
  • VibeThemes
    Participant

    You can probably add something like this. Note, I have not tested it, so this will send a curl request to the same activation page with the activation parameter, in turn the user is activated.

    add_action('bp_before_activation_page',function(){
       if ( !bp_account_was_activated() ){
          
          $pages=get_option('bp-pages');
          if(empty($pages['activate'])){return;}
          wp_remote_post(get_permalink($pages['activate']),array(
             'method'      => 'POST',
             'timeout'     => 45,
             'body'        => array(
                 'key' => bp_get_current_activation_key(),
          ));
          //get the response from above and force user login into the site.
          // get user_id from the response wp_remote_retrieve_body
          // wp_clear_auth_cookie();
          //wp_set_current_user( $user_id ); log the user into wordpress
       }
    });
    #314989
    CloudedDottedMind
    Participant

    Hi,

    Connection requests don’t display inside the My Profile > Connections Requests tab. I do not know what could be causing this but with this users cannot confirm requests.

    Troubleshooting questions:

    1. Which version of WordPress are you running? – latest 5.5.1

    2. Did you install WordPress as a directory or subdomain install? – directory

    3. If a directory install, is it in root or in a subdirectory? – n/a

    4. Did you upgrade from a previous version of WordPress? If so, from which version? – not recently / this did not cause the issue, but I updated from the pas latest version

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. – yes, the rest of the site works no issue

    6. Which version of BP are you running? – latest, BuddyBoss 1.5.2

    7. Did you upgraded from a previous version of BP? If so, from which version? n/a

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? – yes, the list is here: https://ibb.co/VwWVy8p

    9. Are you using a standard WordPress theme or customized theme? – customised Stack WP theme + child theme

    10. Which theme do you use ? – Stack for WP with child theme

    11. Have you modified the core files in any way? – no

    12. Do you have any custom functions in bp-custom.php? – no

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? – Buddyboss installed this built in

    14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress – no errors found, only 404 for those pages

    15. Which company provides your hosting? – Ionos

    16. Is your server running Windows, or if Linux; Apache, nginx or something else? – Linux

    17. Which BP Theme are you using? custom – BP Nouveau

    18. Have you overloaded any BuddyPress template files. – No

    19. Any other site customisations that might have a bearing on the issue? – not that I can think of

    20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page. – I couldn’t see this with buddyboss

    Thank you

    The Hoff
    Participant

    Hi,
    when a user registers to my site, he gets an email with a confirmation link and registration code. But the link does not work, it sais “page not found”.
    The page is there, and I can open it in a new private window when logged in, but not from the email link. The registration code also works, I copied it into the field on the reg.page and it got confirmed.
    The “everyone is allowed to register” is ticked.
    I also deactivated all my plugins, didn’t make a change…
    Do you have any other ideas, where the problem could be or what I could try?
    My site is http://www.surf-mate.de – I’m using Astra theme, it also doesn’t work when changing to twenty-nineteen. I’m using wp Version 5.5.1–de_DE and BP version 6.3.0.
    Thanks… Benni.

    johan13
    Participant

    Hello friends. I was unable to correct the error. When I allow users to register, emails don’t go out for them to activate with the code. I need them to activate their account through the email that is sent to them with the code. But this email never arrives. I have searched the whole wordpress and I have not achieved anything. Install WP Mail SMTP integrating with Gmail and it works, but Buddypress doesn’t work. Identify in “site health” this: https://prntscr.com/tiqdms

    I hope to have your support.

    #312744

    In reply to: Skip activation page

    suparni
    Participant

    Unfortunately nobody could help me with the problem. So I implemented a direct solution in the database.

    I redirected people to another page and adjusted the link in the activation email accordingly.

    Example link in the email https://www.abc.de/activation/?{{user.email}}

    So when this link is called, the script asks which e-mail address is passed.

    The script then searches for the e-mail address in the table “wp_users” and changes the status in the column user_status from 2 to 0.

    The user is then immediately activated by clicking on the link. The script can be integrated into any page.

    <?php

    $queryString = strstr($_SERVER[‘REQUEST_URI’], ‘?’);
    $queryString = ($queryString===false) ? ” : substr($queryString, 1);

    $pdo = new PDO(‘mysql:host=localhost;dbname=example_db_1’, ‘example_usr_1’, ‘example password’);

    $statement = $pdo->prepare(“UPDATE wp_users SET user_status = 0 WHERE user_email = ‘$queryString’”);
    $statement->execute(array(‘user_status’ => 0));

    ?>

    #312743
    suparni
    Participant

    Unfortunately nobody could help me with the problem. So I implemented a direct solution in the database.

    I redirected people to another page and adjusted the link in the activation email accordingly.

    Example link in the email https://www.abc.de/activation/?{{user.email}}

    So when this link is called, the script asks which e-mail address is passed.

    The script then searches for the e-mail address in the table “wp_users” and changes the status in the column user_status from 2 to 0.

    The user is then immediately activated by clicking on the link. The script can be integrated into any page.

    <?php

    $queryString = strstr($_SERVER[‘REQUEST_URI’], ‘?’);
    $queryString = ($queryString===false) ? ” : substr($queryString, 1);

    $pdo = new PDO(‘mysql:host=localhost;dbname=example_db_1’, ‘example_usr_1’, ‘example password’);

    $statement = $pdo->prepare(“UPDATE wp_users SET user_status = 0 WHERE user_email = ‘$queryString'”);
    $statement->execute(array(‘user_status’ => 0));

    ?>

    partycaribbean
    Participant

    WP v:5.4.1 (sub-domains MU configuration) | BB v: 5.2.0 | Theme: Kallyas v:4.17.5 | Plugin: Youzer | Website

    Captcha/Text Colour Issue on BP Registration Page

    I have successfully styled BB using Youzer as required except for the line within the image of the BB Registration Page.

    The font/text remains white on a white background and I am unable to make the change whether Youzer is activated or deactivated.

    I would be truly grateful for assistance on this as new users and unable to register because they cannot see the math value in order to answer.

    Thanks,

    Justin.

    #311231
    kamui83
    Participant

    Hi, i’m using the 5.2.0 version with a italian traslation and i’m having some problem changing a title.
    after a user register in the page the text is “ACTIVATE YOUR ACCOUNT” with a blu line and some text under; i’ve changed the texnt under but i’m not able to change the “activate your account” text, tryed to find on traslation with loco translate but seems there is no line not translated, tryed to find on file, founded on wp-content/plugins/buddypress/bp-themes/bp-default/registration/activate.php but even if i change it nothing change.
    where is that text? i’m going crazy, plis someone can help me? thanks

    thomei
    Participant

    @samtime
    Thank you very much!
    The following guide solves one part of the issue:
    https://buddydev.com/buddypress-better-registration-part-1-remove-full-name-confirm-password-from-buddypress-registration/
    Works very well!

    @ all!
    Now there are still 2 issues left:
    1) How to deactivate/grey the “display name” in the users profile settings?
    2) How to sync all “wp-usernames”, of all existing users, to the “display name”.

    #309932

    In reply to: Buddypress widgets!

    Carsten
    Participant

    Hi Renato.
    Thanks for replying. Sorry for not responding. Lets just say, that I have been elsewhere. 🙂 No luck with any plugin on wordpress.
    However, I found this snippet and it works very well. If you deactivate the Friends Connections in Buddypress. But I would really like to have this feature. So maybe you know someone. Who can locate the issue and fix it. That would be a great help.
    Best regards Carsten.

    //Widget Filter:
    —————————————————————————————————-
    class BP_Custom_User_Ids {

    private $custom_ids = array();

    public function __construct() {

    $this->custom_ids = $this->get_custom_ids();

    add_action( ‘bp_pre_user_query_construct’, array( $this, ‘custom_members_query’ ), 1, 1 );
    add_filter( ‘bp_get_total_member_count’, array( $this, ‘custom_members_count’ ), 1, 1 );

    }

    private function get_custom_ids() {
    global $wpdb;

    // figure out if the logged-in user is man or woman
    // CHANGE FIELD id “3” BELOW
    $gender = xprofile_get_field_data( 3, bp_loggedin_user_id() );

    if ( $gender == ‘Man’ )
    // CHANGE FIELD id “3” BELOW
    $query = “SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 3 AND value = ‘Woman'”;
    else
    // CHANGE FIELD id “3” BELOW
    $query = “SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 3 AND value = ‘Man'”;

    $custom_ids = $wpdb->get_col( $query );

    return $custom_ids;
    }

    function custom_members_query( $query_array ) {

    $query_array->query_vars[‘include’] = $this->custom_ids;

    }

    function custom_members_count ( $count ) {

    $new_count = count( $this->custom_ids );
    return $new_count;

    }
    }

    function custom_user_ids( ) {

    // Don’t do this for the admin
    if(!current_user_can(‘administrator’) ) {
    new BP_Custom_User_Ids ();
    }

    }

    // WORKS FOR DIRECTORY NOT WIDGETS
    // add_action( ‘bp_before_directory_members’, ‘custom_user_ids’ );

    // EITHER OF THESE WORKS FOR WIDGETS BUT NOT DIRESCTORY
    //add_action( ‘bp_pre_user_query’, ‘custom_user_ids’ );
    // add_action( ‘bp_pre_user_query_construct’, ‘custom_user_ids’ );
    add_action( ‘bp_pre_user_query’, ‘custom_user_ids’ );

    —————————————————————————————————-

    manucomanuco
    Participant

    Hi, i would like to know if I can disable the ‘activate’ page where the user goes after clicking the link of the activation mail. I want that after the user clicks on the link, the confirmation trigger starts and the user is confirmed at the wp (due to the fact that is a confirmed user, since he has clicked the confirmation button).

    Is possible to implement this?
    Hope someone has the answer

    sujatagayari
    Participant

    Hello.
    WP Version- 5.2.4
    BuddyPress Version- 5.0.0

    Whenever a user clicks the home icon in my profile or directly on logo button user get logged out automatically and user dropdown again gets login/register links.
    My website is https://sociallyviral.club

    #308395
    tom durocher
    Participant

    Hi @dcavins. Just @mentioning you in case you’re not subscribed. I think you code can work for me if we can just get the Forum name back to being savable.

    After looking at the original function in the link you posted, I’m guessing that updating the nickname with $fullname is not wrong, but it doesn’t seem to be working. I notice that this function in the original code is attached to two actions that are different than the one you had me attach to. Could this be the problem? Remember, I have removed the original xprofile_sync function.

    add_action( 'bp_core_signup_user',      'xprofile_sync_wp_profile' );
    add_action( 'bp_core_activated_user',   'xprofile_sync_wp_profile' );
    

    Thanks,
    Tom

    #307573
    logaritym
    Participant

    Hello. My website puzzleprime.com does not send out activation emails. I am using WP Mail SMTP. I found THIS SOLUTION but I don’t think the BP code on my website needs fixing:

    
    		'core-user-registration' => array(
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_title'   => __( '[{{{site.name}}}] Activate your account', 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_content' => __( "Thanks for registering!\n\nTo complete the activation of your account, go to the following link and click on the <strong>Activate</strong> button:\n<a href=\"{{{activate.url}}}\">{{{activate.url}}}</a>\n\nIf the 'Activation Key' field is empty, copy and paste the following into the field - {{key}}", 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_excerpt' => __( "Thanks for registering!\n\nTo complete the activation of your account, go to the following link and click on the 'Activate' button: {{{activate.url}}}\n\nIf the 'Activation Key' field is empty, copy and paste the following into the field - {{key}}", 'buddypress' )
    		),
    		'core-user-registration-with-blog' => array(
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_title'   => __( '[{{{site.name}}}] Activate {{{user-site.url}}}', 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_content' => __( "Thanks for registering!\n\nTo complete the activation of your account and site, go to the following link: <a href=\"{{{activate-site.url}}}\">{{{activate-site.url}}}</a>.\n\nAfter you activate, you can visit your site at <a href=\"{{{user-site.url}}}\">{{{user-site.url}}}</a>.", 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_excerpt' => __( "Thanks for registering!\n\nTo complete the activation of your account and site, go to the following link: {{{activate-site.url}}}\n\nAfter you activate, you can visit your site at {{{user-site.url}}}.", 'buddypress' ),
    			// 'args'         => array(
    			// 	'multisite' => true,
    			// ),
    		),
    

    Any idea how to fix the issue? Test emails work fine so that issue must be with BuddyPress.

    michaeljcheney21
    Participant

    Ive tried multiple times with different usernames and emails but the registration page is not working;

    Register

    1. Which version of WordPress are you running?

    WordPress 5.2.2

    2. Did you install WordPress as a directory or subdomain install?

    no, on the root

    3. If a directory install, is it in root or in a subdirectory?

    root

    4. Did you upgrade from a previous version of WordPress? If so, from which version?

    no

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.

    yes

    6. Which version of BP are you running?

    Version 4.4.0

    7. Did you upgraded from a previous version of BP? If so, from which version?

    no

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?

    Akismet Anti-Spam
    Activate | Delete
    Used by millions, Akismet is quite possibly the best way in the world to protect your blog from spam. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.

    Version 4.1.2 | By Automattic | View details
    Select bbPress
    bbPress
    Deactivate | Settings | About
    bbPress is forum software with a twist from the creators of WordPress.

    Version 2.5.14 | By The bbPress Community | View details
    Select BuddyPress
    BuddyPress
    Deactivate | Settings | Hello, BuddyPress!
    BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!

    Version 4.4.0 | By The BuddyPress Community | View details
    Select Contact Form 7
    Contact Form 7
    Settings | Deactivate
    Just another contact form plugin. Simple but flexible.

    Version 5.1.4 | By Takayuki Miyoshi | View details
    Select Envato Market
    Envato Market
    Deactivate
    WordPress Theme & Plugin management for the Envato Market.

    Version 2.0.1 | By Envato | Visit plugin site
    Select Featured Image from URL
    Featured Image from URL
    Activate | Delete
    Use an external image as Featured Image of your post/page/custom post type (WooCommerce). Includes Auto Set (External Post), Product Gallery, Social Tags and more.

    Version 2.6.0 | By Marcel Jacques Machado | View details
    Select Google Captcha (reCAPTCHA) by BestWebSoft
    Google Captcha (reCAPTCHA) by BestWebSoft
    Settings | Deactivate
    Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).

    Version 1.51 | By BestWebSoft | View details | Settings | FAQ | Support
    Select Hello Dolly
    Hello Dolly
    Activate | Delete
    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    Version 1.7.2 | By Matt Mullenweg | View details
    Select Leadpages Connector
    Leadpages Connector
    Deactivate
    Connect your Leadpages account to your WordPress site to import Leadpages and Leadboxes

    Version 2.1.6.21 | By Leadpages | Visit plugin site
    Select OptimizePress
    OptimizePress
    Deactivate
    OptimizePress is the essential plugin for marketers. Create squeeze pages, sales letters and much more with ease.

    Version 2.5.21 | By OptimizePress | Visit plugin site
    Select Post Views Counter
    Post Views Counter
    Settings | Deactivate
    Post Views Counter allows you to display how many times a post, page or custom post type had been viewed in a simple, fast and reliable way.

    Version 1.3.1 | By Digital Factory | View details | Support
    Select Socialize Plugin
    Socialize Plugin
    Deactivate
    A required plugin for Socialize theme you purchased from ThemeForest. It includes a number of features that you can still use if you switch to another theme.

    Version 3.10 | By GhostPool
    Select The Events Calendar
    The Events Calendar
    Deactivate | Settings | Calendar
    The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.

    Version 4.9.7 | By Modern Tribe, Inc. | View details | Support | View All Add-Ons
    Select Theia Sticky Sidebar
    Theia Sticky Sidebar
    Deactivate
    Glues your website’s sidebars, making them permanently visible while scrolling.

    Version 1.8.0 | By WeCodePixels | Visit plugin site
    Select Visual Sidebar Editor
    Visual Sidebar Editor
    Deactivate
    An addon that allow you to use WPBakery Visual Composer or wordress editor to override sidebars

    Version 1.2.5 | By ERROPiX | Visit plugin site
    Select WishList Member™ 3.0
    WishList Member™ 3.0
    Deactivate
    WishList Member™ 3.0 is the most comprehensive membership plugin for WordPress users. It allows you to create multiple membership levels, protect desired content and much more. For more WordPress tools please visit the WishList Products Blog. Requires at least WordPress 4.0 and PHP 5.4

    Version 3.0.6282 | By WishList Products | Visit plugin site
    Select WordPress Automatic Plugin
    Wordpress Automatic Plugin
    Deactivate
    WordPress Automatic posts quality articles, Amazon products, Clickbank products, Youtube videos, eBay items, Flicker images, RSS feeds posts on auto-pilot and much more.

    Version 2.3.3 | By Miled | View details
    Select WPBakery Page Builder
    WPBakery Page Builder
    Settings | Deactivate
    Drag and drop page builder for WordPress. Take full control over your WordPress site, build any layout you can imagine – no programming knowledge required.

    Version 6.0.5 | By Michael M – WPBakery.com | Visit plugin site
    Select Yoast SEO
    Yoast SEO
    FAQ | Premium Support | Settings | Deactivate
    The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.

    9. Are you using a standard WordPress theme or customized theme?

    Socialize Child Theme

    10. Which theme do you use ?

    Socialize Child Theme

    11. Have you modified the core files in any way?

    no

    12. Do you have any custom functions in bp-custom.php?

    no

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?

    built in i think

    14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress

    dont think i have these – just cant get registered as a pretend user on the registration page

    15. Which company provides your hosting?

    D9

    16. Is your server running Windows, or if Linux; Apache, nginx or something else?

    Apache i think

    17. Which BP Theme are you using?

    dont know

    18. Have you overloaded any BuddyPress template files.

    no

    19. Any other site customisations that might have a bearing on the issue?

    no

    #307046
    johnyumnam
    Participant

    I am getting

    1) a “504 Gateway Time-out” error on my site while trying to register a new user, but i do get the email to activate the account.

    2) when i click on the activation link that directs me to the activation link page an “invalid activation key” or “504 Gateway Time-out” error is displayed

    My WP version is 5.2.2 and my buddypress version is 4.3.0 and the url of my site is http://www.enlightopedia.net

    Please help

    dcorp
    Participant

    Hello,

    It is driving me crazy that when I install BuddyPress, the profile links either redirect people to main domain or wp-admin page of my site. I could not find a solution for this.

    I install the same theme “boombox” and same plugins to another domain for test and buddypress works as intended there, but not on my current domain.

    Here is my url: https://www.testçöz.com
    ASCII version of my url is: https://www.xn--testz-1ra9h.com

    As my site is IDN, does it cause the issue? Does anyone know how to fix this?
    NOTE: I have tried to clean install of buddypress, disabled all other plugins to see if any of them makes the conflict, it is the same issue even if the only plugin activated is buddypress.

    You can login with the following user data to see and reproduce the error

    username: borabey
    password: borabey

    Please help me as I want to use BuddyPress with myCred and Zombify plugins together.

    I can not go to buddypress

    mochapng
    Participant

    For some reason, people are able to log into the website without activating their account first. When doing so, their account gets bugged out:

    – They see the blue admin bar on top when they shouldn’t (I disabled it so only admins see the bar).
    – Shown as offline
    – Friendship requests do not work and get bugged out.

    Could you offer me some assistance as to why this may be happening? Sometimes they are able to log in without activating. Other times, they get “ERROR: Your account has not been activated. Check your email for the activation link.”

    The theme I use is not custom (https://wordpress.org/themes/editor/). However, I did switch it back to the default theme to check (Twenty Nineteen) and unfortunately, the problem still persists. I’ve tried disabling plugins as well and I could not seem to isolate the problem.

    In https://example.com/wp-admin/users.php?page=bp-signups, the page generates the IDs of all the accounts that are not activated yet. Is there a way for me to fetch the user IDs for those who are not activated yet and redirect them to a custom page when they log-in? Sometimes unactivated accounts are able to log-in. As a temporary solution while I figure out the root of the problem, my plan was to:

    Fetch all the user IDs of those who are not activated yet
    Upon login, redirect them to a custom page that explains that their access is limited and to activate their account to gain access to everything.
    My idea was:

    function unactivated_user_redirect( $user_login, $user ) {
        // Grab unactivated user IDs and store in array
        // Check to see if $user ID matches ID in array.
           // If matches redirect to wp_redirect(www.example.com/custom-page);
              //exit();
    }
    add_action('wp_login', 'unactivated_user_redirect', 10, 2);
    warrencat
    Participant

    In the extended profile fields, I’ve created a field that automatically pulls in data using the process described further below. This field is required and is located in the Base (Primary) group of profile fields.

    The issue I’ve run into is that I’ve configured the field to be visible to “Only Me” and have selected the option to Enforce field visibility, but when I look at the public-facing profile page, this field is still visible to any other logged in user, regardless of role. (I have confirmed this by logging in with a subscriber level account and viewing the profile page.)

    The profile fields data import process:

    I am using the NADI plugin (https://active-directory-wp.com/) to automatically create and sync users and user data from company Active Directory database. This plugin has an add-on tool that will subsequently sync selected data from the user WordPress profile over to the BuddyPress profile.

    Troubleshooting steps I’ve already completed:

    1. I’ve deactivated all plugins other than BuddyPress; the “Only Me” profile is still visible on the public-facing user profile page for any logged in user. It doesn’t appear to be caused by a plugin conflict.
    2. I’ve changed to a default WordPress bundled theme; again, the “Only Me” profile is still visible on the public-facing user profile page for any logged in user. It doesn’t appear to be caused by a theme conflict.

    WP Version: 5.2
    BP Version: 4.3.0
    NADI Plugin Version: 2.1.9 (Up to date)
    NADI Add-on Version: 1.0.4 (Up to date)

    I hope I’ve provided enough information. I’m struggling to determine why this profile field that should only be visible to the person who is logged in and no else is visible to every user. I also hope someone here might have a suggestion or recommendation for what I might try next.

    Thanks.

    #304634
    wasanajones
    Participant

    this one will challenge the most experienced gurus

    WP Multisite
    Buddypress Network Activated
    Working fine… until…

    I somehow caused a perfect storm of conflicts

    I’ll spare you details of all the missteps that went into this mess, but

    the Profile Photo does not display on primary main site frontend or user extended edit page in both mainsite user admin or Network user admin – the edit box simply isn’t there in extended profile edit

    what is crazy is Profile Photo displays fine on subsites including admin

    I’ve done all the standard stuff from deactivating, deleting, clearing, repairing… everything I can think of to find where there might be a

    setting that turns off the admin user profile photo

    I’ve had a ton of plugins activated/deleted, so I’m thinking there is some legacy code lingering like a festering splinter in the database somewhere, but I can’t imagine where or what to look for

    any ideas?

    thanks for any help

    moln4r
    Participant

    Hello,

    Just installed BP and really like it, but I have a small problem.
    My site uses a plugin what imports content from other sites, it also imports comments.
    Now since buddypress activated all the imported comment authors changed to the wp admin user.
    If I check the comments on the backend it shows the original (imported) usernames, but on the frontpage it all changes to admin. If I deactivate BP the problem dissappears.

    WP:5.1.1
    BP:4.2.0
    Theme:Bimber

    I tryed searching the plugin code to find what exactly overwrites the author but no luck, tried to turn on/off all default wp “disscussion” settings, BP settings but no luck.
    Anyone have any idea?
    Thanks.

    Using BuddyPress Noveau.

    After a user click the “Complete Sign Up” button this message is shown: 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.

    1) How do I change that message?
    2) How do I change the page title from “Check Your Email To Activate Your Account!” to something different?

    WP version 5.1.1
    BuddyPress version 4.2.0

    #303695
    cdtrue
    Participant

    Thank you! That gets me half way 🙂

    I still get the notification after registration about the activation link – and I do not think that the little old ladies using my site will get that they have to activate and then wait for approval (to much for them to take in).

    So I now are able to stop users with the extra My Private Site-plugin and the messages sent out from BP egistration works as a charm. There is only one (Account Approved Email) that actually is sent though – I can not figure out how to get the other ones to override the BuddyPress – activation-email. And if I de-activate that e-mail no e-mail is sent at all.

    Also when I click on the register-button in the registration form I get redirected to a page that says that my account needs to be activated and I have to check my e-mail to do so. I want to loose it or change the text.

    If they try to log in anyway they get the wordpress opt of re-sending the activation-link. Same thing here – preferably change the text.

    But where do I find the texts? I guess the re-direct page is automated from BP, the other one is from WP.

    Any tips?

Viewing 25 results - 51 through 75 (of 902 total)
Skip to toolbar