Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,801 through 1,825 (of 22,686 total)
  • Author
    Search Results
  • #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

    #307769

    In reply to: Match making add on?

    Muhammad Kashif
    Participant

    Hey Seth,

    I have authored Matchmaking plugin you can check https://wordpress.org/plugins/match-me-for-buddypress/

    You can request any custom work for that as well.

    #307764
    visitatore
    Participant

    Hi, I’m pretty profane, but try going to the wordpress control panel menu, under “Settings” and then “Buddypress”, then in the “pages” section … you need to make sure the pages match, I don’t think there are any other possibilities about page redirects. If my suggestion didn’t help, I always recommend disabling all plugins except Buddypress and seeing if everything is OK. Hello from Italy.
    Claudio

    #307749
    Mushi
    Participant

    Here is the detail description of the error

    WordPress database error Table ‘my_db.g’ doesn’t exist for query SELECT DISTINCT g.id FROM g ORDER BY g.date_created DESC made by require(‘wp-blog-header.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), include(‘/themes/boss-child/functions.php’), is_user_logged_in, wp_get_current_user, _wp_get_current_user, wp_set_current_user, do_action(‘set_current_user’), WP_Hook->do_action, WP_Hook->apply_filters, memberium_core->set_current_user, memberium_core->generateSession, apply_filters(‘memberium_session_filter’), WP_Hook->apply_filters, BP_Groups_for_MemberiumAutoJoin, BP_Groups_Group::get, wpdb->get_col, wpdb->print_error

    sibahmed
    Participant

    Hello Please Help ! when any member registers and admin can approve the members or add into the participants but the members directory not growing up still after doing this can any one please help that i need that member not need login and members directory should goes up when admin approve them by using plugin in wordpress Thank you !

    philtalk
    Participant

    Hello,

    My users and myself are having a problem where we recieve friend request notifications, and can see the number of friend requests notifcations we have but when we go the the “Requests” page there are no friend requests to be found. The only thing there is a message that says, “No friend requests pending”.

    After some investigation I found that going in and manually changing the name of the user in the extended profile will make that specific user show up in friend requests. This is something that used to happen automatically.

    Is there a fix for this?

    Thanks in advance.

    I will try to answer as many of the Mod questions as I can here:

    Wordpress Version: Version 5.2.3

    Recently upgraded from wordpress version: 5.2.2

    Wordpress was functioning fine before I made this install. So was Buddypress

    Current Version of Buddypress: Version 4.4.0

    Updated Buddypress from Version: 4.3.0

    I have many plugins installed.

    Using BuddyBoss theme

    #307733
    andhi1
    Participant

    Hi Iamdev!
    You said: “you don’t need a ftp access just go to the plugin editer from your wordpress admin backend then select the buddypress plugin and then search for the file profile.php”

    When I select buddypress plugin I can not find a profile.php file.

    I really need to remove that text as it confuses my users as much as me!
    gravatar

    ANDERS

    patalgar
    Participant

    Hi everyone,

    Here is my setup:
    WordPress 5.2.3
    Buddypress Version 4.4.0
    Events Manager 5.9.5

    @Localhost

    I did search through the forum and a famous search tool but didn’t find it yet:

    I would like to link, via the url and $_GET[‘r’] data, to the “compose buddypress profil page” with more than one recipient. Something like:
    a href=”mysite.com/members/user/messages/compose/?r=user1…user2…user3″>link</a

    Is it possible and what would be the semantic for?
    If Not, what solution should I use to get the existing compose page with the field “to” containing “@user1 @user2 @user3”.
    I can get the user with all data (name, login, id), as an array for exemple. And I don’t need to manage large list of user (mostly up to 5-10).

    Thanks for helping.

    #307725
    Ben Roberts
    Participant

    Try add_filter(‘bp_core_fetch_avatar_no_grav’, ‘__return_true’);

    There was a bug ticket that used this ages ago – https://buddypress.trac.wordpress.org/ticket/7056

    Can’t guarantee it still works.

    #307711
    misterjekyll
    Participant

    Hi,
    My registration seems to work fine on the computer but I get reviews that some users can’t register on their mobile device. I tried to register through mobile and have the same issues. After completing the form I get redirected to the same registration form with no errors.

    Website info:
    – WordPress version: 5.2.3–nl_NL
    – Website: mierenmarkt.be
    – Registration form: mierenmarkt.be/registratie

    I tried:
    – Disable plugins (-> didn’t work)
    – Change theme to default (-> didn’t work)

    Anyone knows any fixes? I don’t get error reports in my error logs.

    #307704
    yessoftmk
    Participant

    Hi, I use social logins plugin. When guest register by fb and in fb his name writed in Cyrillic – login in his wordpress profile also will be in Cyrillic. In this case nawigation in buddypress not work – https://i.imgur.com/CfLjbt4.png is it possible fix it?

Viewing 25 results - 1,801 through 1,825 (of 22,686 total)
Skip to toolbar