Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,751 through 4,775 (of 69,040 total)
  • Author
    Search Results
  • #305703
    Venutius
    Moderator

    You can report bugs via Trac: https://buddypress.trac.wordpress.org/

    shanebp
    Moderator

    That’s because the function makes a call to another function that calls a class function that has a param that defaults to ‘only new’.

    Open: buddypress\bp-notifications\classes\class-bp-notifications-notification.php
    and look at the args for public static function get( $args = array() )

    Untested, but try:

    $notifications = BP_Notifications_Notification::get( array( 
    	'user_id' => get_current_user_id(),
    	'is_new'  => 'both'				
    ) );
    gatehousedesign
    Participant

    Hi there,

    I have installed buddypress and everything is working except there are no “add friend” or public/private message buttons under the cover photo, to the right of the profile photo.

    Troubleshooting steps I have already taken:

    1. Plugins – I deactivated them all except buddypress, refreshed page, no buttons.

    2. Theme – I am using a theme called Video Pro which is compatible with Buddypress and has some integration settings too. Others seem to be using Buddypress fine and there are no issues on their support forums with it.

    3. I deleted the plugin and reinstalled a fresh version. Still no buttons.

    4. I am running this on a regular domain, not a subdomain but I have the site password protected. I added a couple of users to Buddypress so that there would be friends to add. If I go to the member directory I can request friend there but not from the other buddypress pages as I expected to see.

    5. The code in the area I think they should be looks like this:

    <div id="item-header-content">
    
    							<h2 class="user-nicename">@gatehousedesign</h2>
    			
    			<ul class="member-header-actions action"> </ul>
    			
    							<div class="item-meta">
    
    					<span class="activity">active right now</span>
    				</div><!-- #item-meta -->
    			
    		</div><!-- #item-header-content -->

    Anyone have any ideas? Much appreciated if you do. Maybe there’s some privacy setting I haven’t unchecked…? Or a conflict? I don’t see any errors in console.

    Thanks,
    GWD

    #305694
    dainismichel
    Participant
    #305688
    jennifersanchez
    Participant

    Hello!
    I was reading the documentation but I can not understand how to disable the buddypress templates, since I am using a general template for all wordpress and they overlap. I tried editing by deleting the styles of single-bp-email in my theme but this invalidated the visualization of the message.
    Could you help me? Thank you very much !!

    #305684
    allnamestaken
    Participant

    Check out BuddyPress Global Search plugin / free

    #305680
    metapost
    Participant

    Hi
    I am using buddypress but not bbpress community for my wordpress network site. When I send group invitation to a user and he clicks on the notification to join it redirects the user to home page of the site.
    how can i fix it? i mean how to access groups?

    Is it a must to use bbpress?

    #305678
    shanebp
    Moderator

    Re BuddyPress Simple Events Pro…
    Any group member can assign an event to that group –
    IF the group admin has selected that option –
    IF the site admin allows group admins to select that option.

    The free version does not support group assignment, but will give you a feel for the very simple nature of the plugin – as opposed to the ‘feature rich’ nature of other event plugins.

    BuddyPress Simple Events

    #305672
    allnamestaken
    Participant

    interested in this as well. The only thing I was able to find was this..

    BuddyPress Simple Events Pro

    #305661
    Venutius
    Moderator

    Try running with just BuddyPress active and with a default theme such as 2017, the chaces are it’s another plugin messing with BuddyPress that is causing this.

    #305658
    Venutius
    Moderator

    Yes I’m afraid Jetpack is a bit notorious in not fixing bugs caused in BuddyPress, for BP sites it’s best avoided in my experience.

    Venutius
    Moderator
    bhattarai1995
    Participant

    I wanted to know How to make “Follow” system, not “friends” system in Buddypress?. Please help me..

    ayoleyi
    Participant

    Dear all,

    I just built my entire subdomain around Buddypress and launched last week. However, it gives endless redirect loops. The problem stops as soon as I deactivate the BuddyPress (core) plugin, and returns immediately I reactivate.

    Kindly assist.

    Thank you.

    fareda
    Participant

    I want to show buddypress message component to my own account page.
    At first I thought it will be as easy as calling messages_screen_inbox();

    But it didnt work. How to display only the message tab from buddypress?

    #305622
    shanebp
    Moderator

    Wow, that is annoying. Never noticed it before.

    imo – the simplest approach is to add some js to submit the form as soon as it appears.

    Add this to your theme > functions.php or bp-custom.php

    function pp_submit_request_form() {
    ?>	
    	<script type="text/javascript">
    		jQuery(document).ready(function ($) {
    			$('#group-request-send').click();
    		});
    	</script>
    <?php
    }
    add_action( 'bp_after_group_request_membership_content', 'pp_submit_request_form' );

    And you could remove or replace the comment field that is briefly visible by editing the template.
    If you’re using the BP Legacy template pack, overload and then edit this file:
    buddypress\bp-templates\bp-legacy\buddypress\groups\single\request-membership.php

    #305620
    gmbyrom
    Participant

    Hi Shane

    This is actually standard Buddypress functionality that I’m trying to change. See this Codex page:

    How To Join a Private Group


    Under the heading “Single group page”, Step 2 is the step I am trying to eliminate.

    Any help you can provide would be greatly appreciated.

    Thanks
    Greg.

    #305616
    happyday1
    Participant

    Hi
    Everytime I click on a link on my (buddypress integrated) site the page reloads from the top. E.g. when I’m going from the “activity” link to the profile edit and the profile photo link the pages reloads from the top.
    It is annoying – does anybody know how to make the loading of the different pages under the buddypress plugin more smooth?

    imborx
    Participant

    Hi, I would like to set a css class/style (in this case “font-weight: 400;”) to a $field_data in a buddypress function and I’m not really sure how can I do that. This is the code:

    function yzc_add_xprofile_field_data_after_username( $name ) {
        if ( bp_is_members_directory() ) {
    
            $field_data = xprofile_get_field_data( 'Age', bp_get_member_user_id() );
            return $name . ', ' . $field_data;
        }
        return $name;
    }
    add_filter( 'bp_member_name', 'yzc_add_xprofile_field_data_after_username', 10 );

    Image with code selected

    Thanks a lot!

    #305593
    Tunglin
    Participant

    I am new in buddypress.
    Wandering that can I replace the post comment system to what’s new form?
    Searching this function for many hours.

    allenhinson877
    Participant

    I have a site set up with WordPress and have BuddyPress installed on it. I am running the Reign Theme currently on my site. When I log in as a user to test the site I have an issue when uploading a new profile picture. I can select a photo and click upload but it will not show my profile picture when the crop option pops up. I can hit crop but not see anything and it will upload my profile picture. I need to change it where the user can see their photo when the crop option pops up. I have already deactivated all my plugins and used a basic theme and it did not fix my issue. If anyone can help me that would be great.

    Ricky Poon
    Participant

    I’m wondering if it is possible to add a textarea and subject line to a post that would send a private message to the poster using buddypress.

    I know its possible with Front End PM, but i hate their UX.

    #305582

    In reply to: Back to Previous Page

    Venutius
    Moderator

    I think you would need to raise a new feature request on Trac for this – https://buddypress.trac.wordpress.org/

    #305579
    elucinda
    Participant

    Yes thanks.. did that still no go.

    I set up WP Mail SMTP but it still isn’t sending the activation email.

    What is the specific code I need to add to tell Buddypress to use the WP Mail SMTP program to send emails? And where do I place this code?

    Thanks

    #305572
    grellgrau
    Participant

    Try rebuild E-Mails. Go to: Tools > BuddyPress

    Mind that this will overwrite your E-Mail customization.

Viewing 25 results - 4,751 through 4,775 (of 69,040 total)
Skip to toolbar