Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,826 through 1,850 (of 22,644 total)
  • Author
    Search Results
  • #308140
    Mathieu Viet
    Moderator

    Hi Laurent,

    Thanks for your feedback, in my “souvenirs” WordPress was sending to the previous e-mail too.. I’m going to check asap. I’ll be back šŸ™‚

    #308139
    Mathieu Viet
    Moderator

    Hi !

    I would try to deactivate BuddyPress from the Administration if you can still access to it. Otherwise using your FTP access I would remove the buddypress folder that should be into the /wp-content/plugins directory of your site. I would then go within the admin to switch to a “TwentySomething” WordPress theme, download a fresh version of BuddyPress, reactivate it. See what happens. If it’s fixing the issue, then ask for help to the author of your theme. Otherwise, eventually redo previous steps to remove/re-download BuddyPress. Before reactivating BuddyPress, deactivate all other plugins. See what happens. If it’s fixing the issue reactivate the other plugins one by one until the bug is back. Once it’s back ask for help to the author of the plugin. Otherwise, try to find the error_log file with your host to see the potential error message.

    I also advise you to read the Basic Trouble Shooting part of this forum topic:
    https://buddypress.org/support/topic/when-asking-for-support-2/ (especially if you use bp-custom.php or the wp-content/mu-plugins/ folder.

    FYI 4.4.0 just like 4.0.0 requires at least WordPress 4.6, 5.0.0 requires at least WordPress 4.7

    laudag
    Participant

    WP 5.2.3
    WordPress as a directory install?
    BP 5.0.0
    Child theme of Virtue premium

    My problem doesn’t seem to be an issue, by a fonctionnality which seems weird.
    When a user wants to change his email adresse in his buddypress profile, then an activation mail is sent… to the old email that have been just changed, not on the new one. In case this user changes his adress because he doesn’t have any access to this old email, he is stuck.
    But if he changes his email adress in the WP user admin (actually, he can’t do that because he doesn’t have this access, only buddypress profile. it’s me who can make the test), WP send an activation email to the new adress.
    And I can see that the fist example is an activation mail sent by Buddypress (email layout of buddypress), and in the second, it’s sent by WordPress.
    So, it seems obvious that it’s a Buddypress action. I would like so that Buddypress send the activation mail on the new email adress of the user not the old one.

    But impossible to find any clue, or any option in the Buddypress setting, or any information in this forum or in the web. As if only me have this problem…

    Somebody could help me ?
    Thank you very much !

    Laurent DAGANY

    rocketmena
    Participant

    Hi,

    Am using youzer buddypress community plugin for my wordpress website. Currently i bought a new plugin for event calendar, its shortcode not supporting in buddypress pages (showing page as blank) but its working fine in other pages, actually i need to include that calendar in my buddypress community page. Ho to resolve this issue? please help.

    #308126

    Thank you to everyone who contributed to 5.0.0!

    (I’ve updated WordPress.org and BuddyPress.org to this latest version.)

    #308092
    smilingtimes
    Participant

    Here you go for who ever is having the issue it was driving me crazy, this little plugin fixed my issue my profile pics when user was uploading from mobile they were upside down now they look normal again

    Fix Image Rotation

    Have an amazing day <3

    #308039
    irishdirector
    Participant

    Help! Groups function not working with BuddyPress through our site which we updated with WordPress. Any ideas on how to get this updated for our members to access the group? Shows up at the top of the page with:

    Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘bp_group_new_topic_button’ not found or invalid function name in /nfs/c09/h02/mnt/128956/domains/ndchicago.org/html/wp-includes/class-wp-hook.php on line 286

    Also will not allow new users to be added, and only shows one page of posts. Our WordPress version is WordPress 5.2.3, BuddyPress is legacy BuddyPress plugin. Any help is greatly appreciated.

    #308028
    furious373
    Participant

    Wordpress 5.2.3 Buddypress 4.4.0

    When uploading a profile picture, the picture uploads but the crop tool don’t work. It’s a small 2×2 square that’s unusable.

    I’m using the current KLEO theme and Buddypress Noveau.

    leleskaya
    Participant

    Hi all
    I just installed BuddyPress in my site – https://www.maesbrasileirasnaeuropa.com – and when I go to the register page, for instance, all comments in my site are displayed.

    You can take a look at https://www.maesbrasileirasnaeuropa.com/registro.

    Actually, it’s not ALL the comments but ā€œold commentsā€ that were added when my site was hosted in WordPress.com. New comments do not really appear in the pages.

    Anyone knows how to fix it?!

    #308003
    David Cavins
    Keymaster

    Sure, you can add a filter to the bp_activity_can_comment filter point. It is designed to only allow comments on certain types of posts/objects, but there’s no reason you couldn’t take the current user into account in your filter.

    You can read more about filters here:

    add_filter()

    The filter I’m talking about is here in the code:
    https://github.com/buddypress/BuddyPress/blob/4.4.0/src/bp-activity/bp-activity-template.php#L2871

    Here’s an example of a filter based on who should be able to comment:
    https://github.com/buddypress/BuddyPress/commit/f968ef5198b48273a477227876fbb1d94b108755

    #307985
    andrewwebber25
    Participant

    I am so sorry in advance and I really don’t know how I am having such a hard time finding this, but where can I customize my buddypress code. Here is how I installed everything. Got the domain from godaddy and installed wordpress right through them. Then on the wordpress dashboard, went to plugins and downloaded buddypress, bbpress and the theme Customify. Every time I am trying to go through a tutorial that involved customizing, I see things like “edit pb-custom.php” and things like that. Where are these files located, how do I literally access them? People say things like “its in /wp-content/plugins” but I dont know where to find that folder to begin with. Is it through the wordpress dashboard of my site? On godaddy somewhere? I know this is like 101 stuff but Im seriously confused where to find anything relating to code. I can find Customify’s Theme Editor very easily, not anything else though. Please help

    #307881
    Kristian Yngve
    Participant

    AH I found the solution!

    Here for anyone else needing it:

    https://www.wpbeginner.com/plugins/how-to-change-sender-name-in-outgoing-wordpress-email/

    // Function to change email address
     
    function wpb_sender_email( $original_email_address ) {
        return 'tim.smith@example.com';
    }
     
    // Function to change sender name
    function wpb_sender_name( $original_email_from ) {
        return 'Tim Smith';
    }
     
    // Hooking up our functions to WordPress filters 
    add_filter( 'wp_mail_from', 'wpb_sender_email' );
    add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
    #307880
    Kristian Yngve
    Participant

    Another screenshot showing the site as a sender “wordpress”

    Screenshot Link: https://prntscr.com/p9bz89

    #307879
    Kristian Yngve
    Participant

    When a user replies to one of my updates within the activity section, it shows as if it is coming from wordpress – this is not how I have configured it in the emails section of the dashpanel for buddypress as everything is like:

    [{{{site.name}}}] {{poster.name}} mentioned you in a status update

    And that works, but not for where it’s coming from: <wordpress@mydomain.com>

    Please see screenshot: https://prntscr.com/p9bx97

    How to set that for buddypress?

    Thank you

    julisalexia1
    Participant

    I am new here so i am sorry if i am posting in wrong place. Tho i am kinda desperate since tried everything but not working.

    I have changed my admin username to another because of my reasons and in wordpress everything went ok. All places where my name has to appear seems just perfect.

    Except on profile. The place is on header.. there stayed old username and i want to make it disappear so can appear new username.

    Anyone can help me? Tried to deactivate.. this and that.. nothing happens. Always same.

    #307875
    julisalexia1
    Participant

    Hello,

    I am new here so i am sorry if i am posting in wrong place. Tho i am kinda desperate since tried everything but not working.

    I have changed my admin username to another because of my reasons and in wordpress everything went ok. All places where my name has to appear seems just perfect.

    Except on profile. The place is on header.. there stayed old username and i want to make it disappear so can appear new username.

    Anyone can help me? Tried to deactivate.. this and that.. nothing happens. Always same.

    msolution
    Participant

    im working with pre_get_posts action hook, and calling xprofile_get_field_data in the function it is returning an empty string, after looking into the function it seems the $bp->profile array is not fully loaded, and $bp->profile->table_name_fields is missing and generating a mysql error.

    I have disabled all other plugins, and still the issue persists.

    what am i missing?

    WordPress 5.2.3
    BuddyPress Version 4.4.0
    this is an intranet site!
    Theme: Multi NewsVersion: 2.6.5 [www.momizat.com]

    The Issue does not happen on TwentyFifteen/ TwentyTwelve

    Looking for a fix.

    #307865
    DL
    Participant

    Just thought I’d let everyone know what I’ve found. Did a lot of searching for a way to handle this and ended up using the WP plugin

    All In One WP Security & Firewall

    Which has as one of it’s many features the ability to set up manual registration.

    Then I used the WP plugin BuddyPress Lock https://wordpress.org/plugins/lock-my-bp/

    To prevent anyone but registered and logged in users from seeing BuddyPress pages.

    #307840
    medienvirus
    Participant

    Hi,

    on my site https://abtomed.com/registrieren/ nobody get’s a mail while register.

    Not the user himself, nor the admin of the site.

    I already tried smpt solutions, which unfortunately don’t help.

    Also the plugin https://wordpress.org/plugins/bp-registration-options/ doesn’t help at all.

    What am i doing wrong about that issue?

    Maybe someone can help to figure out. Also i want a “I read the privacy policy informations” checkbox inside this registration form and a recaptcha spamprotection, but don’t know how to solve it… :/

    Cheers
    Jens

    #307832
    fawp
    Participant

    This seems still an issue on BuddyPress Version 4.4.0: I have seen that a ticket has been created by Brian, details here for tracking and visibility:

    https://buddypress.trac.wordpress.org/ticket/8093

    pixieblitz
    Participant

    I’d like to limit the ability of WordPress users with the “Subscriber” role to interact with the BuddyPress functionality of my website. Is there any way to remove permissions for posting activity updates, commenting on them, etc? Basically I want one set of members to be able to post activity stream updates, and the other set to just spectate with the ability to comment on the site’s blog posts, and not much else (like the regular subscriber role w/o buddypress access).

    I know BP doesn’t really work the same way with roles/capabilities as wordpress… My only ideas off the top of my head are to nest the relevant BP template bits in tags that hide them based on role, but that seems… not pretty.

    Thanks for any pointers!

    #307826
    DL
    Participant

    I actually thought this was a part of WordPress but I’ve been searching docs and googling and haven’t found anything specifically.

    The site is for a physical membership site and only members in good standing will be allowed to register for an account and therefore able to use BuddyPress.

    So the potential new user would fill out the registration form, submit, verify there email and wait for approval from the officers. The BuddyPress registration form will have an extra field to identify the member by their membership number.

    The key is that only accounts that have been approved can see any of the BuddyPress features like member profiles, directory etc. non-logged in users shouldn’t see anything from BuddyPress except the login and registration pages.

    I’m hoping this is easier than it looks so far.

    vivekmathur1969
    Participant

    Hi

    I have set in WP Settings>Discussion,

    “Hold a comment in the queue if it contains 1 or more links” – ie. i do not want to allow posting of any EXTERNAL links in post comments and updates on my site.

    However, i DO want to allow INTERNAL links in post comments/ BP updates/ BP replies (without holding/ approval)

    I found a fantastic snippet which does the job perfectly for comments on WP posts & post types here:

    https://wordpress.stackexchange.com/questions/257916/exclude-internal-links-from-comment-moderation

    However, BP is still blocking internal links posting – any suggestions on plugins/ snippets to allow internal links but not external links, please?

    thanks very much in anticipation, Vivek

    #307815
    Robert D Payne
    Participant

    WordPress version: 5.2.1
    Budddypress version: 4.4.0

    I am coding a friends import page, and everything is working as expected, except that when I go to view the imported friends under Friendships, no members show up. Instead there is an info box that says no members found. The friends count on the nav bar is correct. Does anyone have any idea about what might be the issue?

    Here is the function I wrote to upload and parse a csv file with php.

    function handleFriendsImportPostback() {
        $msg = [
            'message'   => '',
            'has_error' => false,
            'friends_added' => 0,
            'row_count' => 0
        ];
        
        
            //if there was an error uploading the file
        if ($_FILES["csv"]["error"] > 0) {
            
            $msg['message'] = "Return Code: " . $_FILES["csv"]["error"] . "<br />";
            $msg['has_error'] = true;
    
        }
        else {
            
            $currentUserID = get_current_user_id();
            $tmpName = $_FILES['csv']['tmp_name'];
            $csvAsArray = array_map('str_getcsv', file($tmpName));
            
            foreach ($csvAsArray as $friend) {
                $fname = $friend[0];
                $lname = $friend[1];
                $email = $friend[2];
                $msg['row_count']++;
                
                $user = get_user_by('email', $email);
                if(empty($user)) $user = get_user_by('login', $email);
                
                if(!empty($user)) continue;
    
                $userdata = array(
                    'first_name'    =>  $fname,
                    'last_name'    =>  $lname,
                    'user_email' => $email,
                    'user_url'  =>  '',                 
                    'display_name' => trim($fname . ' ' . $lname),
                    'user_login' => $email,
                    'user_pass' => wp_generate_password( $length=8, $include_standard_special_chars=false ),
                    'show_admin_bar_front' => 'false',
                    'description' => ''
                );
    
                $userID = wp_insert_user($userdata,true);
                if(is_wp_error($userID)){
                    continue;
                }else{
                    $msg['friends_added']++;
                }
                
                $user = new WP_User($userID);
                $user->add_role('rdp_unverified');
                $user->remove_role( 'subscriber' );                
    
                
                friends_add_friend( $currentUserID, $userID, true);
            }
            
            $msg['message'] = __('Import completed.');
    
        }
        
        return $msg;
    }//handleFriendsImportPostback
    irishdirector
    Participant

    Hello,

    Our members are experiencing issues with our ā€˜Groups’ on our website. I’m not an expert on BuddyPress or WordPress, so I’m not sure where this issue is stemming from. The top of our ā€˜Ticket Exchange Group’ shows the following error. Also, new users can not even get access to the group, even though they are supposed to be added automatically. It will not allow us to add any members manually, either. Along with this, the members that can actually enter the group cannot get past the first page of postings, and are not receiving email notifications. Please help!

    Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ā€˜bp_group_new_topic_button’ not found or invalid function name in /nfs/c09/h02/mnt/128956/domains/ndchicago.org/html/wp-includes/class-wp-hook.php on line 286

Viewing 25 results - 1,826 through 1,850 (of 22,644 total)
Skip to toolbar