Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,376 through 4,400 (of 68,986 total)
  • Author
    Search Results
  • #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.

    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.

    #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

    Anonymous User
    Inactive

    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
    Anonymous User
    Inactive

    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

    #307540
    Tukaram
    Participant

    I was contacted by a user that said they could not register for my forum. They said the activation link took them to a 404 page. I looked, and sure enough there is no activation page. I certainly do not remember deleting it – but it is in fact gone.

    How to do I get BuddyPress to remake the page? Can I make it myself? If so, what should be on it?

    Odd… 🙂

    #307513
    eloyruiz
    Participant

    I would like to remove Settings > General subtab and set Settings > Notifications as default.
    I tried the code on my Gist https://github.com/eloyruiz/general/blob/master/buddypress-default-nav with different parameters but was unable to achieve it.
    Can somebody help me with that?
    Thanks in advance!

    #307511
    jackal
    Participant

    Hi!

    I can’t dismiss notice notification message! I’m getting a JS error:

    TypeError: jq(...).attr(...) is undefinedbuddypress.js:1433:31
        <anonymous> ../wp-content/themes/wplms/assets/js/old_files/buddypress.js?ver=3.9.5:1433
        jQuery 2
            dispatch
            handle

    When I click on the error it takes me here:

    /* Close site wide notices in the sidebar */
    	jq("#close-notice").on( 'click', function() {
    		jq(this).addClass('loading');
    		jq('#sidebar div.error').remove();
    
    		jq.post( ajaxurl, {
    			action: 'messages_close_notice',
    			'notice_id': jq('.notice').attr('rel').substr( 2, jq('.notice').attr('rel').length )
    		},
    		function(response) {
    			jq("#close-notice").removeClass('loading');
    
    			if ( response[0] + response[1] == '-1' ) {
    				jq('.notice').prepend( response.substr( 2, response.length ) );
    				jq( '#sidebar div.error').hide().fadeIn( 200 );
    			} else {
    				jq('.notice').slideUp( 100 );

    Can Anyone help me with this?

    #307509
    mysticsofthenight
    Participant

    My apologies to all. I found out how to fix the problem of not being able to add additional tabs to the profile section for users on a main social site empowered by BuddyPress. You have to go to WordPress admin > Users > Profile fields and you can add any fields to the profile section of your social site website that is empowered by BuddyPress. This allows users to add their name, bio, location, work, education and anything else you want them to be able to add in their profile on your social site empowered by BuddyPress instead of in the backend of the wordpress page. Also, you can install a plugin that prevents your users from clicking on the dashboard link in top left toolbar and going to backend profile of WordPress, which is called Remove Dashboard access Version 1.1.3 | By Drew Jaynes and can be found at https://wordpress.org/plugins/remove-dashboard-access-for-non-admins/ That said, problem solved and may my solution fix this same users not being able to add more fields in their profile section on a main social website powered by BuddyPress that other admins encounter permanently.

    #307508
    mysticsofthenight
    Participant

    Nevermind all. I found out how to fix it. You have to go to WordPress admin > Users > Profile fields and you can add any fields to the profile section of the profile on your website. This allows users to add their name, bio, location, work, education and anything else you want them to be able to add in their profile on your site instead of in the backend of the wordpress page. Also, you can install a plugin that prevents your users from clicking on the dashboard link in top left toolbar and going to backend profile, which is called Remove Dashboard access Version 1.1.3 | By Drew Jaynes and can be found at https://wordpress.org/plugins/remove-dashboard-access-for-non-admins/ That said, problem solved and may my solution fix this same users not being able to add more fields in their profile section on a main website powered by BuddyPress that other admins encounter permanently.

    #307500
    mysticsofthenight
    Participant

    BuddyPress custom profile plugin doesn’t work. It doesn’t do anything at all. All the profile section shows is “Base Name” and a field to enter your name and that’s it. Users’s can’t add their bio to their profile.

    #307497
    mysticsofthenight
    Participant

    Hello,

    I recently installed the BuddyPress plugin, which is version buddypress.4.4.0 and users can click on edit profile, but they can only edit their name. I also disabled the feature that is through WordPress and lets users edit their profile there because it doesn’t show up on users’ profile page on my social site that BuddyPress manages. Users should be able to edit their profile in the edit option of their profile on my site that BuddyPress manages because the feature is there to do so, but it only allows users to edit what is called “Base Name” under edit profile and they can’t add their bio or anything else. Is there another plugin I have to use with Buddy Press to make it to where users can edit their profile in the edit profile section of their profile on my site that BuddyPress manages? Any help is appreciated. Thanks!

    Respectfully,

    -Mysticsofthenight

    #307486
    Owen Carver
    Participant

    BuddyPress does not have this as a default option in the activity feed settings?

    #307473
    jackal
    Participant

    Hi @vbnr!

    Would you explain a bit more! Where to add this filter? I tried to add it in \wp-content\plugins\buddypress\bp-core\bp-core-functions.php under the specific code but it doesn’t work!

    I even tried the previous solution to replace content_plaintext with content_html and yet users receive emails in plain text.

    Would you help me with this?

    rsmithgs
    Participant

    The link in your previously linked solution is broken, but archive.org shows this from March 2, 2017 (https://web.archive.org/web/20170302040249/http://snippetbarn.bp-fr.net/xprofile-field-length-control)

    Google Translated to English:

    Imagine that you have a profile field containing any biography or presentation and want to display it, at least as an excerpt, on the membership directory.
    Let’s imagine you have an xprofile containing a biography that you want to display, even partially, on the members directory.

    function bpfr_custom_textfield_length() {  
         
        //Check if user is logged in & if xprofile component is activated
        if ( is_user_logged_in() && bp_is_active( 'xprofile' ) ) : 
            $my_custom_textfield = bp_get_member_profile_data( 'field=Brief Biography&user_id='.bp_get_member_user_id() ); 
         
        /*
         * The length = number of characters, not words.
         * Set the number of caracters to show.
         * The 3 dots are the appended text ending the excerpt.
         * Don't remove the quotes if you change this
         * BuddyPress 2.1 will add new class and id for custom fields.
         * The span can be omited to style this part. See ticket #5741
         */
            if ( strlen($my_custom_textfield) > 20) :  //adjust to your need
                $my_custom_textfield = substr($my_custom_textfield, 20).'...'; //adjust to your need
            endif;
                // uncomment the following line to get a span around the displayed field content
            // echo '<span class="short-custom">'. $my_custom_textfield; .'</span>';
                // comment the following line if you use the span
            echo $my_custom_textfield;
                 
     
        endif; // is_user_logged_in
    }
    add_action( 'bp_directory_members_item', 'bpfr_custom_textfield_length' );

    I have not tested this code, just reporting what was originally said to resolve this issue. I am looking to find out if this works as well.

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