Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,676 through 8,700 (of 68,915 total)
  • Author
    Search Results
  • #261122
    shanebp
    Moderator

    bp_group_has_members does not have an include argument.
    It does have an exclude argument.

    More info:
    http://buddypress.wp-a2z.org/oik_api/bp_group_has_members/

    #261119
    dev grl
    Participant

    So I’m reading up on how to incorporate the text changes to this file in my child theme. Do I just create a path like this: /my-theme/buddypress/bp-templates/bp-legacy/buddypress/members/activate.php

    #261115
    Henry Wright
    Moderator

    You’ll find that text in the bp-templates/bp-legacy/buddypress/members/register.php template.

    This article will help too 🙂

    Template Hierarchy

    #261108
    JeffWillia.ms
    Participant

    Hi @dcavins

    Following up after my last reply. I added your code to the specified directory. I receive this error in all my Buddypress interfaces (i.e. members, forums, etc.)

    Parse error: syntax error, unexpected ‘<‘ in /home/swiftbus/public_html/5firemen.com/wp-content/plugins/buddypress/bp-groups/classes/class-bp-groups-member.php on line 1314

    I just get a white screen with that error in it.

    After deleting your code from the file directory above, the problem went away.

    However, the original Groups Header issue still persists.

    Hope that helps! 🙂

    #261099

    In reply to: Hiding register link

    joeaj111
    Participant

    It says only registered members can see buddypress pages. we want anyone to see our members page but we have wordpress pages we want only members to see. with buddypress registration, it registers them but they can login and see member area just not profile pages.

    #261098
    Venutius
    Moderator

    Trying to get a theme to support BP can be a bit of a challenge, if it were me I’d start with adding the register and login links in the menu then hide them for logged in users to keep it tidy, you can do that using WPFront User Role Editor. I run a few sites with theme’s that don’t support BP, it is possible but often you find yourself having to make css changes in order to display parts of the site correctly.

    I’ve set up a site, which is about setting up BuddyPress, you might want to take a look, it might give you some ideas. http://buddyuser.com

    #261093
    modemlooper
    Moderator

    People try to upload very large images all the time. There are limits.

    read here about increasing limits https://codex.buddypress.org/getting-started/customizing/changing-internal-configuration-settings/

    #261089
    JeffWillia.ms
    Participant

    Details:

    Theme: Kleo (Parent and Child) Latest version
    WP: Latest Version
    BP: Latest Version

    Having the same issue and have reported it in Buddypress Trac, Buddypress Support forums (here) and discussed it at length with Seventh Queen (theme developer).

    Tried it with all themes…parent, child, and default 2016. Problems exist in all themes

    Turned off all plugins. Problem persists regardless.

    Cleaned all caches, including host, and Cloudflare.

    Can’t seem to find a solution. Any ideas?

    Thanks.

    #261083
    danbp
    Participant

    You’re on the BuddyPress forum.
    To get answers, try better bbPress support.

    #261082
    tille
    Participant

    I’m not sure if this is still of interest – but BuddyBoss has developed a premium theme Social Marketplace that could probably do what you’re looking for:

    Social MarketPlace

    Yes, you would also need WordPress (free) and BuddyPress (free) and WooCommerce (free) to get it running. I haven’t tried it myself yet, but I’m currently working on a site using Social Portfolio by BuddyBoss and I must say they did a great job. It can be quite demanding to get everything working, but so far I have no complaints. Cheers!

    #261077
    caugas
    Participant

    Have you guys every heard of buddypress looking great on a non-friendly buddy press theme i.e. a theme NOT designed for BP? I was hoping to find a free plugin that would help BP function better on a premium theme.

    #261072
    danbp
    Participant

    Hi @ruoge2007,

    use code button to insert code into topic, thx.

    Code suggestion or BP improvement cant be made on Trac. Devs don’t frequent the forum in depth.

    Participate and Contribute

    #261070
    danbp
    Participant

    Hi @fakurkr,

    the other solution is to use the existing action hooks existing in each BP template.
    Templates are the files stored in bp-templates/bp-legacy/buddypress/ directory.

    For example if you read the code in buddypress/members/single/member-header.php, you will find not less than 6 action hooks, only for the profile header. This means 6 potential places where to add something like a message.

    Th other avantage of this method is that you don’t need to modify any template and that you stay independant from any theme, because you will use a function from bp-custom.php

    In your case, adding a message on user’s profile with help of a function like this:

    function bpfr_my_message_on_profile () {	
    
    	echo 'Your custom text with HTML code or whatever'; 
    
    add_action( 'bp_before_member_header_meta', 'bpfr_my_message_on_profile' );

    And because it is only fired on a profile header, you don’t need the conditional (my_profile). You can of course add other conditions. Sky is the limit !

    #261067

    In reply to: Login error codes

    danbp
    Participant
    #261066
    danbp
    Participant

    @empressdianna,

    please use the code button to insert code into topics ! Thx.

    You use PMPro and share code related to it. That’s nice and kind, but it is probably more difficult for the most of use who don’t use that plugin to discuss with you.
    It can help you, here a great ressource to find anything inside BuddyPress: ie. search result for “N”

    #261057

    In reply to: Bp custom Menu

    livingflame
    Participant

    Hi @danbp
    Me again.

    First look at this:

    // Add Count Near Nav Menu
    function my_counter_nav_menu($menu) {
    
    	if ( ! is_user_logged_in() ) {
    		return $menu;
    	}
    
    	$user_id = bp_loggedin_user_id();
    	$user_url = bp_loggedin_user_domain();
    
    	$notify_url = $user_url . bp_get_notifications_slug() . '/';
    
    	ob_start();
    	?>
    	
    	<li><a href="<?php echo $notify_url ?>">Notificaciones <span class="my_bubble"> <?php echo bp_notifications_get_unread_notification_count( $user_id );?></span> </a></li>
    <?php
    	$menu_items = ob_get_clean();
    
    	$menu = $menu . $menu_items;
    	return $menu;
    }
    add_filter( 'wp_nav_menu_items', 'my_counter_nav_menu' );
    
    

    This is a modification of your code for show notifications bubbles in Main Menu.

    Okey, it works but, I dont want this line: <?php echo $notify_url ?>”>Notificaciones

    I want to get bubbles for Buddypress-Nav-Menu. You know, Dashboard / Menus / Buddypress. Here you have buddypress links: profile, messages, etc. but, if you add “messages”, appear without counter. So, I want counter for these…

    #261049
    shanebp
    Moderator

    Have you tried setting the forum to Private? Or Hidden?
    Go to wp-admin > Forums > Forum Name > Edit > Visibility

    btw – these are the BuddyPress forums.
    For support for bbPress you should use their forums.

    #261045

    In reply to: File Sharing Embedding

    shanebp
    Moderator

    Try this: https://wordpress.org/plugins/buddydrive/

    Google this: buddypress file sharing

    Depending on your ability as a coder, you could adapt some code or write it from scratch.

    #261042
    shanebp
    Moderator

    …you are losing people and ultimately future profits and benefits

    BP is free open source code. There are no direct profits.
    These forums are moderated by volunteers.
    There is no promise, explicit or otherwise, that you will get an answer.

    How does someone who does not constantly do coding for a living really get BuddyPress to function?

    The primary intended audience for users of the BuddyPress codebase: Site Builders and WordPress Developers.

    The widgets and shortcodes you tried ( BuddyPress Sitewide Activity ? ) probably do not include the images because widgets generally output a compressed view and images can take a lot of screen area. It would be relatively simple to tweak such a widget to include activity images.
    If you don’t know how to code, you can post a job here.

    #261033
    ico33
    Participant

    found this thread, at the end it seems there is a solution, but i can’t understand.

    https://buddypress.org/support/topic/bp_get_the_thread_recipients-reporting-extra-names/

    #261032
    manueldo
    Participant

    I asked seventhqueen for help and they said the problem is from buddypress, they can not help.

    When you have a private group and go to approve some member the warning is showed but after approving, when the page reload saying that the membership was approved, the warning dissapears, is the only page where the warning is not being showed.

    #261031
    ico33
    Participant

    UPDATE

    No, there is not the problem of users deleted with the same name.

    Now after having deactivated and reactivated buddypress, private messages are working. The only issue, at the moment, is that strange sentence. You send a message to a user named ABCDEFG

    and after sending, it says

    Conversation between Deleted User, Deleted User, ABCDEFG and you.

    I can’t understand who are the deleted user, and how to fix the issue

    #261030
    danbp
    Participant

    Deactivate https://fr.wordpress.org/plugins/smart-countdown-fx/, activate 2016 theme and give a try

    It seems that this plugin throws an error.

    You may also deactivate all plugins, but BP and search for an issue by reactivating them one by one.
    And if nothing found for plugins, you have to debug the theme.

    https://buddypress.org/support/topic/when-asking-for-support-2/

    #261029
    ico33
    Participant

    Ok after deactivating and reactivating Buddypress plugin…. the user receiver seems to receive the messages, again with the strange sentence

    Conversation between Deleted User, Deleted User, XXXX and you.

    Could it be that there was other user with the same name XXX, that then was deleted? And in someway the system find 2 deleted user and user XXX?

    #261027
    ico33
    Participant

    I deactivated PRIVATE MESSAGE in Buddypress options, and then re-activated.

    How strange… now I can send a message to a user named XXX

    When I send the message, after that it appears below as “Conversation between you e DELETED USERS, DELETED USERS, XXXX”

    Then if you refresh the page, the message count is 0, as it disappeared. My god, I just opened I new website, it worked till yesterday. It’s a great problem and I don’t think it’s simple to understand

Viewing 25 results - 8,676 through 8,700 (of 68,915 total)
Skip to toolbar