Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,351 through 5,375 (of 73,984 total)
  • Author
    Search Results
  • #307661
    aconstantino
    Participant

    Hello!

    I was trying to find a way of deleting users accounts but keeping their activity on the site.

    The situation is that my site in an Intranet, so when people leave the company I don’t want them to show up on the directories or to be a part of the total members count and so on, which I can only achieve by deleting them (I’ve tried creating a role “invisible” with a rule to not appear in the directory but they still show up in the members count and in some other members widgets from my theme).
    I used to have an option of deleting users and sending them to the trash, and with that they would stop showing everywhere but would keep all the activity done in the site; however, now I only have the option of permanently delete the user and so the activity disappears with it.

    I don’t know if this is something I should be solving with Buddypress or with the theme support.
    However.

    Thank you!

    #307658
    lenncat
    Participant

    Hi,
    I activated a plugin that was not supposed to impact BuddyPress but did anyway. It added an attachment field to the bottom of the post form which is a required field.

    I deactivated and deleted that plugin but my form is still showing “add attachment.” I’m wondering if there is a way to restore BuddyPress to its original state?

    I already tried deleting and reinstalling the BuddyPress plugin. Here is the page where I rid of “upload attachment”:

    Activity

    Thank you in advance for your help! 🙂

    DurdenBlog
    Participant

    Hello,

    Since two days, I try to display on a custom widget some information like the last active update of a group.
    For exemple, on the Woffice demo (which uses buddypress) display a widget with the name of the group and the last active update “active 2 years, 1 month ago”.

    How to find the function to acquieve this ?

    Thank you for your help.

    tobias999
    Participant

    Hey,
    I recently uninstalled BuddyPress and deleted every buddypress datatable via phpMyAdmin, because the plugin caused some bugs and i wanted a fresh install.
    Now, I tried to reinstall BuddyPress but as i install it, it creates no “activation” and “registration” page. I also looked into phpMyAdmin and there is not a single BuddyPress related datatable. Did i do anything wrong by deleting the tables, or has anyone experienced the same problem?

    I look forward to any answers!

    #307620
    amasbrown
    Participant

    hello!

    This post shares how it is possible to hide group activity on the main activity feed. Some easy method to do your activity:

    Activating User Wall Posting on BuddyPress
    Go to Settings > BuddyPress > Components.
    Make sure both “Friend Connections” and “Activity Streams” are enabled.
    Go to the Settings > BuddyBoss Wall menu in your Dashboard.
    Configure the options as required for your site.
    You should now be able to go any user’s profile and write on his or her Wall.

    Thanks.

    King Ding
    Participant

    Hello!

    This is a follow up on this post, which has so far helped greatly.
    https://buddypress.org/support/topic/disable-group-posts-from-main-activity-stream/

    This post shares how it is possible to hide group activity on the main activity feed. I would like one small adjustment to this, and that is to hide all group activity EXCEPT for when someone creates a group. For example:

    “NAME created the group GROUP”

    Is it possible to allow only these group updates, but not others from the main activity feed?

    Thanks!

    fawp
    Participant

    hi guys, I have installed BuddyPress on a localhost for evaluation purposes and I am experiencing what @naeemdh posted in their OP.

    Are Forums included by default in notifications?

    If not, is there any way to include them?

    Thank you in advance,
    fawp

    #307609
    joeco
    Participant

    ^^^^

    bbpress 2.5.14-6884
    buddypress 4.4.0
    wordpress 5.2.2
    kleo theme 4.9.10

    #307607
    andhi1
    Participant

    Hi!
    I have installed BuddyPress Xprofile Custom Field Types but the fields is not displayed in profile
    See image:
    sexintressen

    BR
    Anders
    Sweden

    elyonardo
    Participant

    Hello everyone! 🙂
    I have a site in Joomla that I would like to switch to WordPress. On this site, the Community Builder plugin is installed and I read that the WordPress correspondent is BuddyPress.

    I tried (with local sites, to do the tests) to migrate users from Joomla to WordPress wanting to keep the fields in CB. I tried to export from CB to CSV and import them into BuddyPress, using the “Import users from CSV with meta” plugin, and adding, on the BP side, the profile fields that are CB side and modifying the CSV to match.

    Am I having a useless job or is this a good way? Are there any alternatives?

    Thank you all!

    #307605
    andhi1
    Participant

    Hi!
    Why can I not create menues for BuddyPress
    See image:
    2019-08-29_1009

    BR
    Anders
    Sweden

    #307604
    andhi1
    Participant

    Hi!
    How do I create a register link in BuddyPress
    Se image:
    skapa konto

    arohan223
    Participant

    Hello everyone.

    I just installed Buddypress on my site, however, my “activity” page isn’t working. The page is blank and doesn’t have an option for users to post updates. User activity doesn’t show up on it.

    On Buddypress page settings, the correct page is selected for activity streams so I can’t figure out the problem. Any help is appreciated. I’ve been stuck for days.

    Switching to 2019 theme didn’t help.

    #307596
    Mathieu Viet
    Moderator

    BuddyPress 5.0.0-beta1 is available for testing!

    Read more about it here

    enaeld
    Participant

    Hello everyone, I hope you are well.
    I come to you because I have a problem with a sql query.

    To put you in context, I’m trying to make a custom members loop based on the values ​​of the extended profile fields of the members.

    For that I used the codex and in this one they show how to create a function “my_custom_ids” which allows to recover the ids of all the users who put the same value in ONE field.

    I decided to modify this function to be able to retrieve the ids of the users having SEVERAL values ​​of fields in common.

    Here is the SQL query present in the basic function “my_custom_ids” :
    $query = “SELECT user_id FROM ” . $wpdb->prefix . “bp_xprofile_data WHERE field_id = ” . $field_id;
    $query .= ” AND value = ‘” . $field_value . “‘”;

    Here is my SQL query in my custom “my_custom_ids” function :
    $query = ‘SELECT user_id FROM ‘ . $wpdb->prefix . ‘bp_xprofile_data WHERE (field_id = ‘ . $users_gender_form_id. ‘ AND value = “Female”) AND (field_id = ‘ . $users_hair_color_form_id. ‘ AND value = “Blonde”)’;

    I do not know if it’s clear but I’m trying to retrieve the ids of users who select the “female” value in the extended profile field “gender” and the value “blonde” in the extended prodile field “hair color “.

    But of course it does not work ! haha

    When I separate my sql query in two:
    $query = ‘SELECT user_id FROM ‘ . $wpdb->prefix . ‘bp_xprofile_data WHERE (field_id = ‘ . $users_gender_form_id. ‘ AND value = “Female”)’;

    or :

    $query = ‘SELECT user_id FROM ‘ . $wpdb->prefix . ‘bp_xprofile_data WHERE (field_id = ‘ . $users_hair_color_form_id. ‘ AND value = “Blonde”)’;

    it works. I do not know why when I combine the two it does not work… If you have any leads to give me I would be greatly grateful !

    Thank you very much, have a good day !

    (I use WordPress 5.2.2 and Buddypress 4.4.0)

    #307581
    colingdi
    Participant

    Hi folks,
    (sorry only noticed yesterday this went into wrong forum section – would edit but clicking that option put me back on the home page?)
    Could someone tell me if there is a delay or check system in posts to groups within Buddypress or what would cause intermittent delays.

    Scenario:
    Posted group updates for the past hour from 3 accounts intermittently. For the first hour the only posts visible on each users group activity view was their own posts (and any historical from last month).

    Then after 45- 60 minutes all posts became visible (i.e. expected behaviour) and all new posts posted after that point were visible.

    —–
    I can’t see how there would be a delay and then no delay, the activity feed I used was the base code with all customizations removed. I’m at a loss to figure it out and it’s so strange I’m doubting myself but this isn’t the first time this has happened (hence the testing that revealed this anomoly).

    1whitetiger
    Participant

    Hello,

    I am trying to implement the Reftagger plugin ( https://wordpress.org/plugins/reftagger/ ) on my BuddyPress site, and it works great except for on BuddyPress activity posts, in which it is not working at all.

    I’ve tried doing the Reftagger javascript manually ( https://faithlife.com/products/reftagger/customize ) running site-wide like this but same results:

    <script>
    	var refTagger = {
    		settings: {
    			bibleVersion: "NKJV",
    			dropShadow: false,			
    			roundCorners: true,
    			socialSharing: [],
    			tooltipStyle: "dark",
    			customStyle : {
    				heading: {
    					backgroundColor : "#185d70"
    				}
    			}
    		}
    	};
    	(function(d, t) {
    		var g = d.createElement(t), s = d.getElementsByTagName(t)[0];
    		g.src = "//api.reftagger.com/v2/RefTagger.js";
    		s.parentNode.insertBefore(g, s);
    	}(document, "script"));
    </script>

    Can anyone please help me understand why it’s not working for BP activity posts?

    By the way, I am using the BuddyBoss theme.

    #307574
    rsmithgs
    Participant

    Hello,

    I know there are quite a few topics already on excluding people from the Members Loop, but this one is a bit different.
    I’m trying to exclude people who do not have MemberPress Memberships. I’ve seen several based on user role and extending the directory via a custom query (https://buddypress.org/support/topic/extend-bp_members-custom-query/), but nothing related to MemberPress. I’m really hoping I will not need to do as this custom query guy did it and ping my database for every member to see if a membership exists.

    Here is how I’m attempting to do it without luck (within members-loop.php which is located in wp-content/themes/THEME/buddypress/members):

    <?php while ( bp_members() ) : bp_the_member(); ?>
            <?php if(user_can(bp_get_member_user_id(), 'mepr-active', 'memberships: 36, 37, 38, 189, 198, 325, 1141, 1142, 1143, 1127, 1130, 1138')): ?>
    #307573
    logaritym
    Participant

    Hello. My website puzzleprime.com does not send out activation emails. I am using WP Mail SMTP. I found THIS SOLUTION but I don’t think the BP code on my website needs fixing:

    
    		'core-user-registration' => array(
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_title'   => __( '[{{{site.name}}}] Activate your account', 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_content' => __( "Thanks for registering!\n\nTo complete the activation of your account, go to the following link and click on the <strong>Activate</strong> button:\n<a href=\"{{{activate.url}}}\">{{{activate.url}}}</a>\n\nIf the 'Activation Key' field is empty, copy and paste the following into the field - {{key}}", 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_excerpt' => __( "Thanks for registering!\n\nTo complete the activation of your account, go to the following link and click on the 'Activate' button: {{{activate.url}}}\n\nIf the 'Activation Key' field is empty, copy and paste the following into the field - {{key}}", 'buddypress' )
    		),
    		'core-user-registration-with-blog' => array(
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_title'   => __( '[{{{site.name}}}] Activate {{{user-site.url}}}', 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_content' => __( "Thanks for registering!\n\nTo complete the activation of your account and site, go to the following link: <a href=\"{{{activate-site.url}}}\">{{{activate-site.url}}}</a>.\n\nAfter you activate, you can visit your site at <a href=\"{{{user-site.url}}}\">{{{user-site.url}}}</a>.", 'buddypress' ),
    			/* translators: do not remove {} brackets or translate its contents. */
    			'post_excerpt' => __( "Thanks for registering!\n\nTo complete the activation of your account and site, go to the following link: {{{activate-site.url}}}\n\nAfter you activate, you can visit your site at {{{user-site.url}}}.", 'buddypress' ),
    			// 'args'         => array(
    			// 	'multisite' => true,
    			// ),
    		),
    

    Any idea how to fix the issue? Test emails work fine so that issue must be with BuddyPress.

    #307572
    colingdi
    Participant

    Hi folks,
    Could someone tell me if there is a delay or check system in posts to groups within Buddypress or what would cause intermittent delays.

    Scenario:
    Posted group updates for the past hour from 3 accounts intermittently. For the first hour the only posts visible on each users group activity view was their own posts (and any historical from last month).

    Then after 45- 60 minutes all posts became visible (i.e. expected behaviour) and all new posts posted after that point were visible.

    —–
    I can’t see how there would be a delay and then no delay, the activity feed I used was the base code with all customizations removed. I’m at a loss to figure it out and it’s so strange I’m doubting myself but this isn’t the first time this has happened (hence the testing that revealed this anomoly).

    #307568
    juden
    Participant

    Dear sir
    I have tried installing buddypress but when I was about activating it the same error message came up and the website crashed. Then I have to go my backend to delete it. At the moment I cannot configure anything on the site because the same error message comes up and freezes the the site. Please help
    Juden

    #307555
    markbildner
    Participant

    Is there a way to add users in bulk to Buddypress Groups the same way you can send invites?

    The invite page provides a list of users with checkboxes. This is very efficient. However, you have to wait for everyone to accept invitations, which is troublesome if your groups are classrooms and you want everyone to be up and running at the start of the school year.

    The back-end Groups Edit page allows you to directly add usernames to groups. But the way you do it is with a search box, and it is really slow!! If you have to assign hundreds of students to their classrooms, it takes forever!

    I would love to have the group edit page to provide the same list of checkboxes. Or maybe have the invite page provide the option of directly adding usernames to a group. Surely this is a snippet of code in one place or the other. Ideas?

    For reference I am on wp 5.2.2 and buddypress 4.4.0 and due to the restrictions of my theme I am currently on Legacy.

    Thanks in advance!

    Mathieu Viet
    Moderator

    Hi,

    Could you check if the xProfile (Extended Profile) component is active?

    The locally managed Avatar feature of BuddyPress needs this component to be active.

    #307543
    Mathieu Viet
    Moderator

    Hi,

    The plugin “BuddyPress Reply by email” you are mentionning is probably using a function located into BuddyPress, that’s the reason why you get the WordPress message about technical difficulties.

    You should re-install BuddyPress and activate it. Then deactivate “BuddyPress Reply by email” and completely remove it from you WordPress, and do the same for BuddyPress (deactivate then remove completely).

    kimchifriedrice101
    Participant

    I have Learnpress LMS (v3.2.6.3) and buddypress (v4.4.0), and a Learnpress-buddypress integration plugin (v3.0.5). My problem is no avatar is showing on the buddypress profile. there is also no change avatar option showing. I have all the settings checked – allowed users to upload avatar, etc.

    also, since i read somewhere to check this, if I go to my-site.com/[member]/[username]/[profile]/change-avatar, its a 404 page.

    Requesting assistance on this. Thank you!

    my website is: http://www.proceedph.com

Viewing 25 results - 5,351 through 5,375 (of 73,984 total)
Skip to toolbar