Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,451 through 5,475 (of 73,928 total)
  • Author
    Search Results
  • #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

    #307235
    xiao3307
    Participant

    I installed a the latest version BuddyPress to my ISP Manager / Centos 7 server in that I install the latest version of WordPress on Mariadb 10.3 database . After installing BuddyPress by using W_-CLI command line, I could not see Group inside the Menu bar option which is supposed to show up but I can see some other buddy options: Activity, Forum, Logout, Settings, Profile, and Notification.

    It also looks like buddypress pages that showing in the Menu Bar is different depending on which database being used. In my case I have an old version of Mariadb5.5.60 but fewer litems showing up in the menu option drop-down list.

    Any suggestions will highly appreciated

    Daniel

    #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!

    #307218
    buddyhelp
    Participant

    Hi,

    I can’t enable the registration.
    1) There is no option “allow anyone to register” in my wordpress admin settings
    2) When I click on “pages” on buddypress pages setting: under “registration” it says something in the lines of “Registration is currently disabled. Before you are allowed to register to the page, please enable the recording to select either “User office can be registered” or “Both websites and user offices can register” on this page.”

    when I write the admin username and password, it leads to a blank page saying “Sorry, you are not allowed to access this page.”

    What to do?

    Thanks for all the help in advance!

    PS: I am using a Norwegian version of it via University of Bergen, if it 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

    #307214
    harlestonemanuel
    Participant

    WordPress Communities are great for increasing website traffic. By gathering a large number of visitors and encouraging discussion between members, they link visitors and webmasters to be more closely and improves reader loyalty.
    By easily setting up a blog and installing a proper community plugin, you can allow visitors to submit content, have a real discussion in post comments, and even combine with social networks.
    BuddyPress
    BuddyPress is a powerful WordPress plugin that takes the self-hosted WordPress sites to integrate with the social network and community features. It allows you to handle user profiles, user groups, activities, and others within WordPress blogs. So you can use it as a social network for schools, colleges or universities or a communication tool for friends, organizations or companies; and more. As a result, you can easily develop a WordPress community with BuddyPress. https://www.ecohindu.com/

    #307203
    morgandebray
    Participant

    Hi,

    I’ve seen that I have to copy the bp-legacy folder into my theme to override the template file.

    I’ve done that, it seems ok, but I can’t override the other file, such as bp-group-template.php ? I need to override the function that generates the “sort by” search (without touching the core files, of course).

    I’ve tried to override the function inside the buddypress-function.php file and in my theme function.php file, but nothing is working (still have the default form).

    See :

    `add_filter(“bp_groups_members_filter”, “mytheme_groups_members_filter_custom”);

    function mytheme_groups_members_filter_custom(){
    return “test”;
    }

    #307197
    JapanFreak
    Participant

    Hi guys im looking for buddypress compatible plugin
    so i want like every user to have an list on thier profile
    a list with an avatar size image (like 360 x 360) and a description beside every image and to be able to share this list..
    do you think that an plugin like that exists?

    pceservices
    Participant

    Hi all,

    I have to build a meetingroom booking website

    Bookings are sold by Woocommerce but I have to ask customer to associate a people group with booking (to have list of all meeting partipants)

    So I’d like to use BuddyPress to let user create his group(s)

    Is there a plugin to integrate BP into WC so during checkout, user is asked to create or select existing BP group and associate it to current order ?

    Thanks a lot

    #307190
    emilia015
    Participant

    Hello, I need help please. I am trying to show the list of members of a group. I have the code here

    <?php
    
        global $groups_template; 
     
        if ( empty( $group ) ) { 
            $group =& $groups_template->group; 
        } 
     
        if ( ! empty( $group->is_member ) ) : ?> 
     
            <ul id="group-members"> 
     
                <?php foreach( (array) $group->is_member as $is_member ) { ?> 
     
                    <li> 
                        <a href="<?php echo bp_core_get_user_domain( $is_member->user_id, $is_member->user_nicename, $is_member->user_login ) ?>"></a>
                    </li> 
     
                <?php } ?> 
     
            </ul> 
     
    <?php else : ?> 
     
            <span class="activity"><?php _e( 'No Members', 'buddypress' ) ?></span> 
     
    <?php endif; 
    
    ?>

    Here is the result.

    <ul id="group-members"> 
         <li><a href=""></a></li> 
    </ul>

    I would greatly appreciate any help. Thank you very much in advance

    #307189
    rupalifairshare
    Participant

    I am using buddypress form for wplms. I want to take profile feidls i created in wp settings->user->profile fields in my buddy press form. How to integrate these new fields in buddypress form.

    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.

Viewing 25 results - 5,451 through 5,475 (of 73,928 total)
Skip to toolbar