Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,201 through 12,225 (of 73,984 total)
  • Author
    Search Results
  • donburikun
    Participant

    How can I configure Buddypress to prevent users from adding more than 1 recipient to the “Send To (Username or Friend’s Name)” field on the compose private message page? I would like to do this to reduce the ability of users to spam multiple users at once.

    #262023
    danbp
    Participant

    Hi,

    please give more details… what kind of post ? Blog, update, forum….
    By the way, BP doesn’t handle blog posts.
    Read documentation about emails here:

    emails: https://codex.buddypress.org/emails/
    custom emails: https://codex.buddypress.org/emails/custom-emails/

    #262018
    usualgirl2001
    Participant

    Hi,
    I use WordPress 4.7 and budypress 2.7.3. My site sympozjum.pev.pl
    When I register as a new member, I receive activating e-mail, but in strange format which I cannot open. In buddypress there’s an option to generate e-mail in text format. I see this option and I wrote this alternative e-mail format but it doesn’t work however. E-mail is sent only in one format.
    What can be wrong?
    Thx

    #262013
    heytricia
    Participant

    I asked a bit too soon… A little more searching and I found your explanation here. Setting the default component seems to have done the trick. Thanks for the code samples!

    #261931
    danbp
    Participant

    Sorry, i don’t act privately on user’s site.

    If you’re unable to solve your issue, hire somebody who can help you on BP Job Board.

    #261925
    Venutius
    Moderator

    Have you tried deactivating all plugins apart from BuddyPress and using the 2016 theme? Does it work then?

    #261924
    jeroende
    Participant

    Hi,

    We are having the problem that if buddypress is active and BP_ROOT_BLOG is defined that translations aren’t saved.

    Does anybody have the same problem?, of has any idea why buddypress would affect this?

    Thanks,
    Jeroen

    #261922
    danbp
    Participant
    #261920
    ico33
    Participant

    Hello Guys!

    I have a WordPress site with Buddypress. User registration is managed by WordPress or Buddypress?

    This is the problem: in my site there is a spammer (not a robot, but a person!) that registers a lot of users and uses them for creating flames. Blocking IP is useless because he has different connections (mobile, etc) and the IP changes always. He create new emails, and makes registrations.

    Now I am quite expert in looking at the emails he uses. So If I could “disable” the automatic registration, and enable each new user manually, it could be ok. I mean: a user makes the registration, but doesn’t receive the email for clicking. He has to wait for me, that I see the “pending” registration and approve them manually.

    Is this possible? Is this the best solution?

    #261919
    danbp
    Participant

    Hi,

    the only valid URL to theme customizer is:
    ../wp-admin/customize.php?return=%2Fwp-admin%2Fthemes.php

    BuddyPress pages are not customizable like ordinary WP pages. BP pages have dynamic content and can be adjusted to any theme directly by CSS and a child theme. These page should only exist with a title, and nothing else.

    Depending the theme you use, and his complexity, customize it to your need first. Once your WP works with the desired layout, you activate BuddyPress.

    This should work flawless, out of the box generaly. If you estimate that some details, like a header width or an avatar size should be modified, you do that directly via CSS.
    Read codex for more details about themes.

    #261914
    livingflame
    Participant

    @henrywright

    This work okey –>: but, How I can Hide Admin from BuddyPress Widget??

    —->

    // Deny access to admins profile. User is redirected to the homepage
    function bpfr_hide_admins_profile() {
    	global $bp; 
    	if(bp_is_profile && $bp->displayed_user->id == 1 && $bp->loggedin_user->id != 1) :
    		wp_redirect( home_url() );
    	exit;
    	endif;
    }
    add_action( 'wp', 'bpfr_hide_admins_profile', 1 );
    
    // Hide admin's activities from all activity feeds
    function bpfr_hide_admin_activity( $a, $activities ) {	
    	
    	// ... but allow admin to see his activities!
    	if ( is_site_admin() )	
    		return $activities;	
    	
    	foreach ( $activities->activities as $key => $activity ) {	
    		// ID's to exclude, separated by commas. ID 1 is always the superadmin
    		if ( $activity->user_id == 1  ) {			
    			
    			unset( $activities->activities[$key] );			
    			
    			$activities->activity_count = $activities->activity_count-1;			
    			$activities->total_activity_count = $activities->total_activity_count-1;			
    					$activities->pag_num = $activities->pag_num -1;				
    		}		
    	}		
    	// Renumber the array keys to account for missing items 	
    	$activities_new = array_values( $activities->activities );		
    	$activities->activities = $activities_new;	
    	
    	return $activities;
    	
    }
    add_action( 'bp_has_activities', 'bpfr_hide_admin_activity', 10, 2 );
    
    // Remove admin from the member directory
    function bpdev_exclude_users($qs=false,$object=false){
        
        $excluded_user='1'; // Id's to remove, separated by comma
    	
        if($object != 'members' && $object != 'friends')// hide admin to members & friends 
        return $qs;
    	
        $args=wp_parse_args($qs);
    
        if(!empty($args['user_id']))
        return $qs;	
    	
        if(!empty($args['exclude']))
    		$args['exclude'] = $args['exclude'].','.$excluded_user;
        else
    		$args['exclude'] = $excluded_user;
    	
        $qs = build_query($args);
    
        return $qs;
    	
    }
    add_action('bp_ajax_querystring','bpdev_exclude_users',20,2);
    
    // once admin is removed, we must recount the members !
    function bpfr_hide_get_total_filter($count){
        return $count-1;
    }
    add_filter('bp_get_total_member_count','bpfr_hide_get_total_filter');
    
    
    #261901
    melodies
    Participant

    I have tried with Firefox, Internet Explorer, and the Microsoft Edge browser. They are all having the same issue.

    You will need an account to be able to access the BuddyPress pages.
    What is a good email address or any alternative to send you the URL and a user account password to use for logging in?

    #261894
    modemlooper
    Moderator

    Try another browser, the zip from .org should not download to local. It could also be an issue if you installed BuddyPress from a one click installer. They sometimes create bad folder permissions.

    #261891
    danbp
    Participant

    Check your forum settings and sync WP and BP users.

    Usually on a local site, and standard setup, while you use BP group forum, the forum slug is:
    http://localhost/groups/group_name/forum/
    If you use wampp, you should have a list of virtual hosts (aka site names), where you installed wordpress. This means also that wp is at the site root. If your site is called mario, you install wp there and then you should have http://mario/ Once BP is activated, you’ll get http://mario/members/ or http://mario/groups/ and so on…

    The link to the forum user/author/commenter is
    http://localhost/members/member_name/

    When you use bbPress as standalone forum (aside or without BuddyPress), the link looks like

    http://localhost/root_forum/single_forum/forum_name/
    Link to user is the same as the one indicated previously.

    More details here

    Installing Group and Sitewide Forums

    You can also follow the bbPress install guide if you use bbPress separately.

    #261890

    In reply to: Newbie questions

    mohamedouqas
    Participant

    @danbp thank you , i’m a beginner my self and that’s how i did it , can you please answer my question here Broken user Link

    #261889

    In reply to: Newbie questions

    danbp
    Participant

    @mohamedouqas, @vidalpaulo

    if you want to change the labels for you theme you can go to your theme directory and search for these words and replace them. That’s a rough, dirty trick to avoid. 😉

    Much more simple, and best practice by the way, is to use the language file shipped with your theme.

    Customizing Labels, Messages, and URLs

    But as we’re talking here about BuddyPress, most of the items are in the BP language file.

    “Follower” sounds more like used by another plugin. But again, you’ll find it in that plugin language file.

    2) There is a plugin: https://wordpress.org/plugins/buddypress-login-redirect/

    3) you’re right, this need some custom coding. Read here how to do that:

    Navigation API

    If you search the forum, you’ll find many examples too.

    #261887
    mohamedouqas
    Participant

    in my forum when they display links to the author or a user , when clicked they redirect to
    http://localhost/wordpress/members/root/ (or / username depends on user )
    but i get a not fount page . i have already a page named members .
    im using
    wordpress 4.6.1
    buddypress 2.7.2
    anyone have the same problem ?
    thank you

    #261884
    danbp
    Participant

    Hi,

    basically, you can get it by using WP’s get_bloginfo() function (read here).

    There is also this BP function bp_blog_description(), which works when you’re in the blog loop.

    You have also several action hooks in the blog template (bp-templates/bp-legacy/buddypress/blogs/blogs-loop.php) you can use to insert a blog description to the blog list.

    #261882

    In reply to: Chat groups

    danbp
    Participant

    No. Chat is plugin territory.

    #261881
    danbp
    Participant

    Hi @archie22is,

    thank you for your report. But when you write such information, it is of your responsability to give correct information.

    Such alarming title can confuse any user. It is unfair and to be honest, it is only concerning you (it’s your install who has that issue, not WordPress or BuddyPress, in their globality). Especially that the error message has nothing to do with BuddyPress.

    In other words, you annonce 2 wrong information on the wrong forum.

    The error is related to bbPress. And there is already a topic about this warning on WordPress support.

    Read it and try to repair or add your own opinion to that topic.
    Open also – if none exist – a topic on bbPress support.

    #261880

    Topic: Chat groups

    in group forum Requests & Feedback
    Артур
    Participant

    Hi! Do you plan to create chat for groups? In the same way as you did with the forum. What would the chat have already been integrated into BuddyPress and was available when creating groups. Now more live chat the most popular.

    #261879
    Archie Makuwa
    Participant

    Hey guys,

    I had to downgrade this morning when two of my sites started showing errors. This is what I got:
    ksort() expects parameter 1 to be array, object given in /var/www/that-dope-site/wp-content/plugins/bbpress/includes/core/template-functions.php on line 316

    I also noticed the error on a remote website and it occurred last night: http://rodamania.com/

    Just reporting. I solved the issue by simply downgrading my version of BB.

    Current BuddyPress version: 2.5.10

    #261876
    larsivar
    Participant

    – Clean install of wordpress 4.7 with just standard theme settings.
    – Pretty permalinks are selected.
    – No other plugin is activated.
    – Have tried to clear cache and cookies.
    – My host is one.com

    The installation of buddypress works, but when I press activate all the information from the dashboard disappears. Only the menu bar on the left appears to be normal, but the rest of the page is blank no matter which link I press.
    Once I delete the buddypress plugin from the server I am able to use the dashboard again as normal. Have tried this in both firefox and chrome.

    Any idea what could be the problem here?

    #261873
    alliebells15
    Participant

    ..Right. It appears to be lazy programming to me. Instead of having Buddypress actually integrate with the website for the real page address, it creates its own links which is misleading. If Buddypress is just going to create its own pages, then why should I manually create pages that will not be used and offer no real utility?

    I assume you meant to say this is a problem with Permalinks and not with ProfilePress, which is the link you sent me for support. Thank you for that piece of misinformation. I also presume that you are aware that Buddypress is creating its own links and this is why you presented those links to me as if resetting all my plugins actually achieved something…which it didn’t.

    Well, this has been lovely. A person can learn to do anything courtesy of google and youtube. However, the ability to be respectful and considerate of other individuals doesn’t come as easily. You work for a support forum, honey. Be supportive.

    #261863
    tergra
    Participant

    Found the source of the issue. I had put the field (First name (Base)) in another group of fields, because it only makes the registration process longer and doesn’t bring anything valuable to the site. But when yo do so, it breaks the registration process for some reason. It no longers makes the required verifications.. I’m now implementing the solution of changing is_required described here by ModemLooper : https://buddypress.trac.wordpress.org/ticket/5373?cversion=0&cnum_hist=3
    It seems to work, I only have a issue with the css (I put a big div with display none before xprofile fields and I’m closing it at the end, just before the submit button, but it puts the submit button on the right as if the xprofile field was there, weirdly/

    Buddypress should really have that in core as this required Xprofile field is really not user-friendly AT ALL. 😉

    Thanks everyone ! 🙂

Viewing 25 results - 12,201 through 12,225 (of 73,984 total)
Skip to toolbar