Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,826 through 1,850 (of 22,682 total)
  • Author
    Search Results
  • 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?

    #307693
    dagamachris
    Participant

    Hi,

    My site is http://www.tipua.com, WordPress 5.2.3, Buddypress 4.4.0

    I’m still struggling with reducing the default number of comments displayed on updates in the activity stream from 5 to 2.

    Based on a couple of older posts here I’ve tried editing the function bp_dtheme_hide_comments() found in global.js at /plugins/buddypress/bp-themes/bp-default/_inc

    However, that doesn’t work, can anyone point to where I need to make this change?

    Any guidance you give me would be much appreciated.

    Cheers
    Chris

    #307690
    lordmatt
    Participant

    As of (I think the last WordPress update but not 100% sure) the images for groups do not show up on the groups page or the widget. It was working yesterday (prior to the latest update).

    Any idea what is causing that?

    #307686
    iamdev
    Participant

    yo 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

    #307682
    banoyeirani
    Participant

    Newly, this error has tormented me how to fix it.
    Thanks to all friends’ attention and answers
    I really want to know what the problem with the theme is.
    Explain that WordPress is a multi-site network.
    The theme was okay before.
    php 7.3

    Fatal error: Uncaught Error: Call to undefined function bp_notifications_get_notifications_for_user() in /home/banoyeir/domains/mysite.com/public_html/wp-content/themes/jannah_v3.2.0/jannah/framework/plugins/class-tielabs-buddypress.php:120 Stack trace: #0 /home/banoyeir/domains/banoyeirani.com/public_html/wp-includes/class-wp-hook.php(286): TIELABS_BUDDYPRESS->get_notifications(”) #1 /home/banoyeir/domains/mysite.com/public_html/wp-includes/plugin.php(208): WP_Hook->apply_filters(”, Array) #2 /home/banoyeir/domains/banoyeirani.com/public_html/wp-content/themes/jannah_v3.2.0/jannah/templates/header/components.php(121): apply_filters(‘TieLabs/BuddyPr…’, ”) #3 /home/banoyeir/domains/mysite.com/public_html/wp-content/themes/jannah_v3.2.0/jannah/framework/classes/class-tielabs-helper.php(81): include(‘/home/banoyeir/…’) #4 /home/banoyeir/domains/mysite.com/public_html/wp-content/themes/jannah_v3.2.0/jannah/templates/header/nav-top.php(113): TIELABS_HELPER::get_template_part(‘templates/heade…’, ”, in /home/banoyeir/domains/mysite.com/public_html/wp-content/themes/jannah_v3.2.0/jannah/framework/plugins/class-tielabs-buddypress.php on line 120

    donalisa4u2
    Participant

    We have set the setting to where there’s is no login needed. The engineers still can’t access my WP admin. Can you please help to solve this issue. I also having issues on the forum post I have added a contact form along with my post for the forum, however the coding for that form is showing in the web site itself when clicking on the forum menu page. I have done another post without adding a contact page and I am not able to see how other members can comment back. Please let me know what is the best way to have members to comment back. My web site is https://busspro.com

    #307667

    In reply to: BuddyPress Tables Lost

    suprimatec
    Participant

    I was able to solve the problem by manually installing the zip file from this page https://buddypress.trac.wordpress.org/browser/trunk/

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