Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 2,501 through 2,525 (of 69,129 total)
  • Author
    Search Results
  • #318252
    silverax
    Participant

    whenever I try to edit my profile in the buddypress forum, the server forum returns:

    “Sorry, you are not allowed to access this page.”

    I tried to logout and re-login, and even installed a new browser to avoid cache issues.

    #318240

    In reply to: Auto Refresh

    songdove
    Participant

    On the sitewide activity, I see “load newest”, but on the profile activity, or on whatever the page is that loads when you click to see a full conversation, or view a notification of someone’s comment, “undefined(1)” not only shows, but starts incrementing endlessly till you click it or leave the page. And don’t tell me to change the theme, I’ve tried a dozen themes now at least to get every piece working I need for my buddypress puzzle, this should work no matter what the theme is. If there IS a particular css call being messed up, what is it so I can add it to the customizer Additional CSS area?

    silviach
    Participant

    For the second time in 3 months, all registered users in our forum have received the same private message from a new (fake) user. It would be good to limit private messages recipients to 2 at a time. How can I set BuddyPress to do that ?

    Our forum: durecomemuri.it/forum/

    WordPress v. 5.7.1
    BuddyPress v. 7.3.0

    #318236
    Varun Dubey
    Participant
    anonymous
    Participant

    how to add a submit biodata (Profile Fields) button to buddypress profile . after completing the profile user have to click submit biodata . as a admin i will be able to check the biodata then approve or disapprove . user will get a email upon approval or disapproval .

    BP Profile Search plugin will only show the member i approved.
    plz help , i am new to buddypress.

    #318211
    nikcree
    Participant

    The error log filled up in the space of minutes with this error after installing and configuring BuddyPress:

    [25-Apr-2021 01:35:35] WARNING: [pool pnfpmkxxww] child 17798 said into stderr: “NOTICE: PHP message: PHP Warning: current() expects parameter 1 to be array, null given in /home/462548.cloudwaysapps.com/pnfpmkxxww/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php on line 305”

    poopoosan
    Participant

    I would like to restrict buddypress member’s activity with paid membership pro.
    I know paid membership pro offers php function, but I don’t know how to customize using php files.
    I am wondering how to customize the html output.

    #318195
    mdw15
    Participant

    We are running WordPress 5.6.3 and BuddyPress 6.3 (now 7.3).

    mdw15
    Participant

    When we switch PHP from 7.3 to 7.4 we get a warning generated in the Grops button on the user’s profile page:

    Warning: Creating default object from empty value in /code/wp-content/plugins/buddypress/bp-groups/bp-groups-template.php on line 1036
    https://sso-nittanyai-alliance.pantheonsite.io/alliance-programs/nittany-ai-challenge/resources-for-participants/teams/#mobile-wrapper

    Here is the full HTML that is generated:
    <a href=”
    Warning: Creating default object from empty value in /code/wp-content/plugins/buddypress/bp-groups/bp-groups-template.php on line 1036
    https://sso-nittanyai-alliance.pantheonsite.io/alliance-programs/nittany-ai-challenge/resources-for-participants/teams/#mobile-wrapper”>Teams
    <span class=”fa fa-sign-out”></span>

    The caused the link to not work and confused the browser asking the user to pick an app to open this with.

    We were running BuddyPress 6.3, but after we updated to BuddyPress 7.3 the problem remained. It definitely seems to be associated with PHP 7.4.

    Looking for help to get this functioning correctly in PHP 7.4.

    #318193
    mysitefixesit
    Participant

    So this seem to be the forum that has current users talking.

    Issue: Buddypress widgets and Buddypress/BP plugins for media not working correctly for updates.

    Discussion: So using the latest activities there are a few thing seen.

      Creating Activity

    • when updates selected any activity with an image will not show, so latest list is not correct
    • when gallery updates selected activities will show latest but only if no images attached, so latest list is not correct.

    Buddypress version: 7.3.0
    Wordpress Version: 5.4.5 but have tested with newer version
    Plugin: Mediapress 1.5.1 (able to control what media can be added to community)
    other Plugins: n/a have disabled in testing

    Solution: None found so far

    Alternate: Alter code at plugin/level – have not done(but able to if need/able to write new code)

    Theme Goal: Achieved – twitter/like community.

    traceykin
    Participant

    Hi

    I was wondering if you could help me please with php.

    After the user fills in the create an account section and base register form I would like 2 things to happen when the user the hits complete signup button.

    1. Disable the auto activation so I can assign a member group in the wordpress users section
    2. Redirect to an external website for their tiered membership payment

    I have tried this for the redirection but I cant get it to work (I added the URL). I placed it in the child theme’s function.php

    function ps_bp_redirect($user) {
    $redirect_url = ‘url goes here’;
    wp_safe_redirect( add_query_arg( array( ‘user’ => $_POST[‘signup_username’] , ’email’=> $_POST[‘signup_email’]), $redirect_url ) );
    }
    add_action(‘bp_core_signup_user’, ‘ps_bp_redirect’, 100, 1);

    and I used this to stop the auto activation and this works perfect. I added the code to snippets plugin.

    add_filter( ‘bp_core_signup_send_activation_key’, ‘ps_disable_activation_email’ );
    function ps_disable_activation_email() {
    return false;
    }
    add_filter( ‘gettext’, ‘ps_change_activation_message’, 20, 3 );

    function ps_change_activation_message( $translated_text, $text, $domain ) {

    switch ( $translated_text ) {
    case ‘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.’ :
    $translated_text = __( ‘Your membership account is awaiting approval by the site administrator.’, ‘buddypress’ );
    break;
    }

    return $translated_text;
    }

    I am using the newest version of wordpress and buddypress Version 7.3.0

    Many thanks and kind regards

    Tracey Kinchella

    #318182
    bibblybob
    Participant

    Hello All, I have 2 questions I’m wondering if anyone can help with.

    User Registration
    When a user tries to register, the password field already has a pw entered. Is there a reason this is happening? It didn’t use to happen in previous version of BuddyPress. I can’t imagine people would sign up with a password already in the password box, so I’m wondering what the point of this is:

    1) I’d consider it suspicious. I’d delete and put my own pw in.
    2) I’d have to remember a password generated by the site instead of my own password.
    3) It makes me think there’s some bug with the site. None of the big platforms has a pw already put in there for you to use.

    Is there a way to turn this automatic password generation off?

    Profile navigation
    With the new BuddyPress update, everyone’s profile now has an arrow on the left and right of the page, which directs you to another profile. Is there a way to turn this off, or do we need to use CSS (display: none;) to remove it?

    Thanks.

    schnax
    Participant

    Hello, since the BuddyPress 7.3.0 update I can only invite 14 of the 500 wordpress users to a BuddyPress group. Can someone help me there?

    dmcat
    Participant

    Hi there!

    I’m sure this is bit of a crazy ask, but here it goes anyway…

    I’ve been reviewing the code for custom activity posts. Though I’m far from being an expert it seems fairly straight forward. However I’m not quite sure how to pass the data that I want to be in the content of the post.

    On my site users can donate money to good causes. I would like a post to be created whenever a user does this. All donations take place via subdomain (payments.mydomain.co), after completing donation via stripe they are redirected to a success page in that subdomain, which has a link back to the site.

    Firstly, is it possible to generate a post from an action that took place outside of buddypress (and is not a plugin)?

    Secondly if yes, how can you make it work? I can’t seem to quite work it out because I can get it to trigger any actions/filters required for custom posts since it lies outside of buyddpress.

    #318168
    systmx
    Participant

    Hey all.

    I’m trying to determine the best way to change the header and footers on my buddypress pages like member etc. I’ve done a fair bit of searching, but haven’t been able to find the right approach. It seems like something simple that I’m just missing. To be clear, I want, for example, member pages or activity to use a theme header or footer I specify for that page…very similar to what I could do for regular wordpress pages.

    Thanks for any help you can provide!
    Tim

    #318161
    eddie
    Participant

    Good afternoon!
    With some of the updates, there was a problem with the registration page on the site.
    1. In the BuddyPress settings, the page I created for registration is selected in the “Pages” section. Everything used to work.
    2. There are plugins in collaboration with BuddyPress – BP Disable Activation Reloaded and Youzer. But when I deactivate them, the problem doesn’t go away. But when I deactivate BuddyPress, the problem with redirects disappears.
    3. Urls for site pages without “/”, i.e. site.com/post-name

    BuddyPress 7.3.0

    elliesatt
    Participant

    I am getting registration spam by the bucketloads and I’m not sure how to combat this effectively.

    What I’ve done/considered so far:

    • Activating Recaptcha v3 (done)
    • Hope that email activation weeds out some of the spammers
    • Googling has advised hiding /wp-login.php?action=register since many spambots target this, but I’ve not been able to do this successfully, BuddyPress seems to redirect this to its register page.

    I’d be super glad for any advice on:

    • Hiding /wp-login.php?action=register
    • Any other spam-killing things that I should be doing

    Thanks!

    #318143
    jesusinica
    Participant

    The error seems to be back, uploading any photo under 452px causes the issue.

    The solution suggested by @dragoeco seems to work:

    
    define( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 150 );
    
    

    My installation uses the docker image: wordpress:php7.4-fpm-alpine

    My environment:

    
    PHP: 7.4.13
    WordPress: 5.7.1
    BuddyPress: 7.3.0
    GD: bundled (2.1.0 compatible)
    Imagemagick:3.4.4
    
    

    Plugins enabled:

    
    BuddyPress: 7.3.0
    
    

    Theme:

    
    Twenty Twenty-One: 1.2
    
    
    #318139
    kristianyanchevv
    Participant

    Hello. I can’t to find in settings of BuddyPress , how to aprove first as a administrator when some of the user’s want to create a Group in my website ( I want this as my security and as spam or obscene actions of a user) .
    When someone comments on a group or topic i found how to disable or enable hi’s comment , but for creating a groups i don’t know how.

    Thanks in advance for the help.

    #318127
    r083r7
    Participant

    I’m trying to understand if there will be an issue with using BuddyPress groups and SEO. From my reading on SEO the closer a page is to the main domain the better. For example, if I have a forum topic about Butterflies and I was just using bbPress the URL would be:

    MySite.com/forum/topics/butterflies/

    The page “butterflies” would be two jumps away from MySite.com

    But if I use the feature to add my forum inside of a group the URL changes to this:

    MySite.com/group/group-name/forums/topics/butterflies/

    The page “butterflies” would be four jumps away from MySite.com

    I was wondering if anyone knows if using forums inside of BuddyPress will have a negative impact on SEO and if there’s a way around it by having the URL structure different, reducing the number of jumps.

    brianj7
    Participant

    Hi, everyone.
    I want to add the option to choose gender type in BuddyPress profiles.
    The user should be able to choose male, female, or Other (with a ‘specify’ text field) in a check box style option list.
    How can this be done?

    #318112
    Mathieu Viet
    Moderator

    Hi @olamyklebost,

    I’m sorry to read what happened to your site. I believe something went wrong during the upgrade process with the WordPress.org Plugins directory. I advise you to remove completely the BuddyPress plugin directory to reinstall a fresh download of the 7.3.0 package.

    All previous BuddyPress versions can be downloaded from the advanced area of our plugin’s page on WordPress.org:
    https://wordpress.org/plugins/buddypress/advanced/

    You’ll find a dropdown control where you can choose the needed previous version. Before reverting I strongly encourage you to try again to download 7.3.0 from there https://downloads.wordpress.org/plugin/buddypress.7.3.0.zip and reinstall it.

    The error message says a file is missing, but if you look into the 7.3.0 tag you’ll see the file the error is mentioning bp-core-wp-abstraction.php is not missing into the tag:
    https://plugins.trac.wordpress.org/browser/buddypress/tags/7.3.0/bp-core

    I hope this will help you fix the issue.

    #318107
    Ron Suarez
    Participant

    I have had a similar problem with duplicates in the BuddyPress group activity stream. However, I think the problem is due to a delay following a click of the submit button, so users end up clicking twice. Who knows how or where to change the code, so that you can only click the submit button once?

    #318104
    luuigi
    Participant

    I need to use numeric usernames actually I used the last Buddypress version, I received a message says “SORRY, USERNAMES MUST HAVE LETTERS TOO!”

    Could you help me Team?

    #318103
    olamyklebost
    Participant

    This upgrade crashed my site:

    Om du søker hjelp med dette problemet kan du bli bedt om noe av følgende informasjon:
    WordPress-versjon 5.7
    Nåværende tema: BuddyApp Child (versjon )
    Nåværende utvidelse: BuddyPress (versjon 7.3.0)
    PHP-versjon 7.4.16

    Detaljer om feilen
    ==================
    En feil av typen E_COMPILE_ERROR ble forårsaket i linje 458 i filen /home/2/g/georgernes/www/wp-content/plugins/buddypress/class-buddypress.php. Feilmelding: require(): Failed opening required ‘/home/2/g/georgernes/www/wp-content/plugins/buddypress/bp-core/bp-core-wpabstraction.php’ (include_path=’.:/usr/share/php’)

    Is there somewhere I can find 7.2.1 and reinstall it, please?

Viewing 25 results - 2,501 through 2,525 (of 69,129 total)
Skip to toolbar