Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,451 through 4,475 (of 68,986 total)
  • Author
    Search Results
  • #307284
    Brajesh Singh
    Participant

    Hi,
    BuddyPress.org is not shutting down. The next version of BuddyPress will be available on 15th.
    You can follow the development here
    https://github.com/buddypress/BuddyPress

    and for the upcoming REST API here
    https://github.com/buddypress/BP-REST

    BuddyBoss’s fork is mega bundle of BuddyPress and a few other plugins(bbpress, bp-profile search, and a few others) with minor enhancements. It does not seem their fork will survive on its own(been following their updates from the first release till now) if the BuddyPress development ceases. Consider it as a distribution that bundles some needed functionality together than a real fork(atleast until now).

    There have been many community plugin available in past(ultimate members, user ultra and I can recall 4-5 others) which have been doing well. There will be even more.

    The choice should be based on your needs. Using a commercially supported plugin provides better support which BuddyPress lacks currently. If support is important, BuddyPress may not be the best choice.

    Other than that, no membership plugin has a vast eco system than BuddyPress(It has 500+ addons on wordpress plugin repo).

    Hope it clarifies and helps you decide.

    Regards
    Brajesh

    #307280

    In reply to: Report button

    lordmatt
    Participant

    I’m working on a plugin to allow you to report and track the report of pretty much anything in BuddyPress. How soon this is ready for use rather depends on if I write it by myself or others chip in to help.

    #307274
    iamdev
    Participant

    Hey @lordmatt i appreciate your effort and i would like to help with my level of capability i am not very good at php but could help you in the front UI part if you want and i also think other should also join us such as @ventius please consider this effort from the buddypress community

    sibahmed
    Participant

    Hi i want some help that i want to make profile fields city dropdown which is that at the time of registration as a buddypress member when user select a country from country dropdown then against that country cities want to appear in city dropdown to select please help Thank You !

    #307254
    Russ Powers
    Participant

    Not sure if this is still relevant, but you can easily remove the email address field without having to remove the entire page. This can be accomplished by editing the BuddyPress template files you copied into your WordPress theme (wp-content/themes/mytheme/buddypress).

    The file you will want to edit is named general.php and is located in “wp-content/themes/mytheme/buddypress/members/single/settings”. Once you locate general.php, simply delete the following code located around line 27 and 28.

    <label for="email"><?php _e( 'Account Email', 'buddypress' ); ?></label>
    	<input type="email" name="email" id="email" value="<?php  echo bp_get_displayed_user_email(); ?>" class="settings-input" <?php bp_form_field_attributes( 'email' ); ?>/>

    Presto! No more email field 🙂

    #307253
    james4177
    Participant

    I am new to WordPress and Buddypress. I have a couple of items I am struggling with and would love a little direction.

    1. In Buddypress, when you visit a group that is private, you receive a default message that says “This is a private group. To join you must be a registered site member and request group membership.” I would like to add a button directly below this message that says “Register”. This would need to be connected with the default message in some way so that the register button appears every time (and for every different group) the default message is displayed. I tried before but it seemed to connect the button only to one particular group. How can I go about adding this to the default message and what file and where in that file would I edit such a thing?

    2. Once they press the button to register, how do you get them to redirect back to the group they were originally linked to?

    3. In Buddypress, is there any way to turn off the public, private, or hidden options when creating a group and just make all groups private automatically?

    I would really appreciate any assistance. Thank you.

    d3vnu77
    Participant

    When you comment on a buddypress post, that comment shows up as again in your feed as “posted a new activity comment”.

    I’d like to just see the comments on the original post. How do I filter these “Activity Comments” out?

    #307251
    tirinorius
    Participant

    I am new at asking for assistance in these forums. So, bear with me please. I am working on a WordPress site that involves BuddyPress groups as well as the membership system that PMPro provides. I am using these on the Kleo theme. I am looking to have a site that has many users who will make groups for their needed purpose. What I need to figure out is, once that group is made the user will send a link to the group they created to the guests they want to join said group. The guest that received that link will click on it and be sent to the group, however, they will still need to sign up to the site to access the group.

    What I would like to know how to do:
    1. The guest will be able to see the group (from clicking on the sent link) but I would like there to be a button on that page prompting user to sign up to the site to join the group.
    2. Immediately after registration, which will be a form on its own page, the guest will be redirected back or to the same group page as the link clicked.

    I am fairly novice at this kind of thing and not really even sure where to even start, so I hope that I explained it well enough and I appreciate any assistance greatly. Thank you!

    Evelien
    Participant

    In my BuddyPress forum I can see headings like “46 messages in [topic] (+2 hidden)”
    What does it mean if a post is “hidden” in BuddyPress?
    How can I find which are the “hidden” posts?
    Who can see them, and who can’t?
    Can a moderator change this status? If yes, how?

    #307245

    In reply to: Wer ist online Widgets

    iamthewebb
    Participant
    #307243
    welsh10
    Participant

    Hi,

    Suddenly my emails / buddypress notifications have stopped. The only recent change has been adding Sucuri WAF. I’m using Mailgun to send out the emails.

    Any advice?

    #307241
    tammya1999
    Participant

    We have been using BuddyPress Groups Extras plugin to add extra pages to each of our groups for some time now. But, the plugin hasn’t been updated in quite some time.

    Is there a way to add blank pages to groups where the user can update them? TYIA

    #307233
    rsmithgs
    Participant

    Hello guys,

    Just in case anyone else was wondering. If you want to grab data from topics or replies you need to grab the hook that fires after it is saved. These 2 did the trick:

    //for when new topic was created
    add_action('bbp_new_topic_post_extras', 'group_has_new_topic', 10, 2);
    //for when new reply was created to a topic
    add_action('bbp_new_reply_post_extras', 'group_topic_has_new_reply', 10, 2);

    I know that this will grab all bbPress topics and replies, but it fits my purposes.
    If anyone knows how to grab only BuddyPress Group Forums’ Topics and Replies that would be awesome, but for now this will work for me and I hope it works for others!

    These actions rely on $topic_id and $reply_id only and respectfully, but you can grab any other data such as Topic Title, Forum Name, Topic or Reply Author, etc. through the Topic or Reply ID alone like so:

    $topic_id = bbp_get_reply_topic_id($reply_id);
        $topic_title = bbp_get_topic_title($topic_id);
        $forum_id = bbp_get_topic_forum_id($topic_id);
        $forum_title = bbp_get_forum_title($forum_id);
        $user = bbp_get_reply_author_id($reply_id);
        $user_info = get_userdata($user);
        $username = $user_info->user_login;
    #307224
    Blake
    Participant

    I have an issue where I have https://sucuri.net locking down the wp-admin interface for security purposes to specific IP addresses.

    The BuddyPress plugin profile and cover image upload fields, on the profile page, appear to be using the wp-admin/admin-ajax.php file to upload images to the site. I also have users who log into the site, but only on the front-end of the site. They do not have access to the admin section. These users are not able to upload images since the admin section is locked down.

    One thinking I noticed was that if I disable javascript in my browser for the profile photo upload screen the UI falls back to a PHP based upload mechanism. Is there a way to make the PHP method the default for all forms in BuddyPress so that I don’t have to unlock my admin interface?

    Thank you for any help.

    #307223
    shemakeswebsites
    Participant

    Hello, I have a a site where users seldom use friend connections – I’ve decided to do away with the feature. When I try to disable it from the BuddyPress settings, I get a message that reads, “Settings saved” but the friend connection function is still enabled….

    Any ideas on addressing this?

    #307222
    rsmithgs
    Participant

    WordPress Version: 5.2.2
    BuddyPress Version: 4.4.0
    bbPress Version: 2.5.14

    Hello, I’m looking for a hook to grab data of new topics and replies as they are added.

    I was thinking this would do the trick, but it does not trigger my curl request.

    add_action('groups_forum_new_topic_after', 'group_was_posted_on', 10, 2);
    add_action('groups_forum_new_reply_after', 'group_was_posted_on', 10, 2);

    Then I tried this:

    //new topic was created
    add_action('bp_forums_new_topic', 'group_was_posted_on', 10, 2);
    //new post was created to a topic
    add_action('bp_forums_new_post', 'group_was_posted_on', 10, 2);

    Still no luck. What actions/hooks do I need to use for:
    User creates a new topic
    User creates a new reply to a topic

    Thanks for your help

    #307221
    Heather Acton
    Participant

    I worked with WP Engine to get this fixed on a site so thought I’d paste his steps here in case it helps anyone else. This got activity feed loading activity (even on groups) while using BP Nouveau.

    Here are his comments (Micah B):

    so I did three total things. I cache excluded two URLs:

    ^/login
    ^/activity

    and I turned a very specific setting on our end off – it was referenced in an old BuddyPress ticket that related to some of the issues I was seeing.

    The setting name is “heartbeat_autosave_only” which I toggled to off

    Hope this helps!

    #307217
    vida28
    Participant

    Hi,Got this error on the last update.
    fatal error: call to undefined function bp_get_activity_slug() in /home/farslm/domains/farslms.com/public_html/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-component.php on line 236

    Sujatha
    Participant

    Hello Friends,

    I want to created an android application for my website created with buddypress. I have a plan to provide the android app to my website viewers. Help me to create an android app for my buddypress website.

    Thank You.

    Sujatha
    Participant

    Hello freinds,

    I want to add monthly based subscription in my BussyPress website. I have a plan to collect money from people for read the news and articles in my website. Please help me to Add payment subscription in my buddypress website.

    Thanks.

    stokim2012
    Participant

    Hi!
    I would like to block loading buddypress custom css file in theme’s buddypress folder on every pages. I used this code in functions.php
    function conditional_buddypress_styles_scripts() {
    if ( function_exists( ‘is_buddypress’ ) ) {
    if ( ! is_buddypress() ) {
    wp_dequeue_style( ‘buddypress’ );}}

    However, theme folder/buddypress/buddypress.css file is still on load. How can I dequeue custom buddypress style sheet?
    I need your help. Thanks in advance.

    #307176
    gingerbooch
    Participant
    #307174
    Sujatha
    Participant

    Hi Friends,

    I want to add live chat between registered members in my website. Iam using BuddyPress. Please help me to add the live chat.

    Thank You

    urlemontea
    Participant

    Hello, I’m using BuddyPress on my website with multiple themes, I recently noticed that my users would be logged out when they were directed to certain pages, that’s not what I want to happen, please let me know if anyone knows how to solve this.
    This is the Link to that page

    #307157
    ds123
    Participant

    i found this thread searching for buddypress sharing ….Paul Gibbs i’m with you on how it needs some love this idea of making the activity posts more like twitter does

    so there are 2 out of 3 built into buddypress now ….1. comments on activity entry 2. favorite an activity entry (however the favorite item does not show on the users “feed” or “wall” / personal activity stream on their profile page

    so what about REPOST (same idea as a retweet) ?

Viewing 25 results - 4,451 through 4,475 (of 68,986 total)
Skip to toolbar