Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 20,151 through 20,175 (of 73,986 total)
  • Author
    Search Results
  • #212795
    SK
    Participant

    @callumoberholzer BuddyPress profiles have been getting more and more robust.

    Member search is something BuddyPress is not very good at though. Plugins such as BP Profile Search offer a partial solution. So if you feel search function is too limited, do feel free to contribute code to make BuddyPress better. Any help is always welcome.

    #212793

    In reply to: 2.2 top features

    SK
    Participant

    hnla:

    It’s that time again isn’t it @sooskriszta for your wish list

    Exactement, Hastings.

    hnla:

    I would leave out the @mentions on individuals they can be irritating.

    Agree 100%. Honest mistake. Didn’t intend to @mention. Just force of habit.

    hnla:

    As you have created tickets for all your wish list items I’m sure they’ll receive consideration so perhaps these forum posts are unnecessary?

    I’m sure they will. But:
    1. I have lots of tickets, I wanted to have a look at my priorities
    2. My wishlist often includes others’ tickets as well.
    3. This topic isn’t just about me. I also want to hear about other’s top wishes, and I want core team to hear them as well.
    4. C’mon, this is a fun “tradition”

    djpaul:

    Not sure where you got Christmas from

    From that old liar, the trac roadmap https://buddypress.trac.wordpress.org/roadmap
    I also recall something to that effect being mentioned in a devchat. Though I also recall scope finalization date being set to end of WCSF…

    #212783

    In reply to: 2.2 top features

    danbp
    Participant

    @sooskriszta

    thank you for this wishlist ! 😉
    The in #4539 related Mediapress is a great feature (still in beta, but promise full).

    I installed it yesterday for intense test. 😉

    #212738
    Henry Wright
    Moderator

    Hi @doremdou

    You can disable @-mentions with the BuddyPress No Mentions plugin.

    #212619
    callum.oberholzer
    Participant

    This is where you need to be 🙂 https://codex.buddypress.org/getting-started/

    #212545
    Henry Wright
    Moderator

    See my first post in this thread. That should do it for you.

    #212544
    Henry Wright
    Moderator

    Hi @callumoberholzer

    BuddyPress allows you to have:

    • member profiles
    • an advanced member search (through the BP Profile Search plugin)
    • private messaging

    So it looks like your requirements are covered. My advice would be to set up a test install and try out all of the features to see if they meet your requirements.

    #212541
    danbp
    Participant

    Hi @iburnthings,

    Try this. Add the snippet to your child-theme functions.php or to bp-custom.php

    /* Remove @mention from profile header */
    function bpfr_remove_mention_from_profile() {	
    	
    	echo '<style> h2.user-nicename { display:none; } </style>';
    	
    	if( bp_is_user() && ! bp_get_member_user_id() ) {
            $user_id = 'displayed: '. bp_displayed_user_id();
        } else {
            $user_id = 'get_member_user: '. bp_get_member_user_id();
        }
    	
    	remove_filter( 'bp_get_displayed_user_mentionname', bp_activity_get_user_mentionname( bp_displayed_user_id() ) );
    	
    }
    add_filter( 'bp_get_displayed_user_mentionname', 'bpfr_remove_mention_from_profile' ); 

    To change the default landing tab, from (activity) to (profile), use this:

    /* Change BuddyPress default Members landing tab. */ 
    define('BP_DEFAULT_COMPONENT', 'profile' );
    #212528
    bp-help
    Participant

    @struth
    Have you altered the members-loop.php in any way directly or via a function that hooks into it?
    \wp-content\plugins\buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php
    If not have you tried activating different themes such as twentyfourteen to see if the issue persists?

    ggsalas
    Participant

    Hi @shanebp,

    I can solve the problem!

    This is the code thats work perfect:

    add_filter( 'bp_blogs_record_activity_content', 'record_post_activity_content_update');
    function record_post_activity_content_update( $excerpt, $post_content, $activity ) {
    	global $post;
    	if( $post->post_type == 'post' ) {
    		$post_content= 	'<a href="' . get_permalink( $post->ID ) . '" class="activity-content-title" >' 
    						. get_the_post_thumbnail( $post->ID, 'articulo-lateral') 
    						. get_post_field('post_title', $post->ID) . '</a>' 
    						.get_post_field('post_content', $post->ID);
    	}
    	return $post_content;
    }
    

    Example:
    1- New post activity: https://i.imgur.com/75Qf5WH.png
    2- Edited post activity: https://i.imgur.com/0dWME4m.png

    The only problem that I find is not caused by this: Activity comments closed for the edited posts: https://buddypress.org/support/topic/activity-comments-closed-for-the-edited-posts/

    Thanks and best regards,
    Gabriel

    #212370
    Halo Diehard
    Participant

    Thanks for your quick response, @danbp. I did not include the support information, because I just needed an answer to my simple question; didn’t think anyone would be able to help me with my actual issue, since I am using Simple Press and not bbPress.

    Simple Press has a BuddyPress plugin, that integrates some of the functionality of their forums into the BuddyPress activity, and allows the forum owner to elect to use the BuddyPress profile, for example, over the SP one. But I am not seeing any forum posts in activity. I contacted them, but I also was not seeing the forum tab like I see here. I was here for a separate issue, and noticed that forum tab, so I opened this topic to ask about the tab.

    Maybe that tab disappears if bbPress is not active, I’m not sure, but I really thought I remembered with the bbPress forums that my member’s posts were mixed in with all the other sitewide activity, and I don’t remember ever seeing a forum tab. I’m on my second BuddyPress supported theme; the first was Custom Community, and now I’m using Matheson.

    I’m familiar with how to set up BuddyPress, but thanks for the links. Here is the rest of the info, in case it helps:

    1. Which version of WordPress are you running? 4.0

    2. Did you install WordPress as a directory or subdomain install? If this is either or, than it’s a directory install

    3. If a directory install, is it in root or in a subdirectory? Again, not sure of the question. My url points to the root wordpress folder, but that folder is not in the root of my server, but a few folders in.

    4. Did you upgrade from a previous version of WordPress? If so, from which version? Have had WordPress and upgraded every release for a couple of years

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes.

    6. Which version of BP are you running? 2.1.1

    7. Did you upgraded from a previous version of BP? If so, from which version? 2.1.0? I don’t know, the same: Have had BuddyPress for at least a year, upgrade it as releases come out.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?

    (Ones followed by asterisk are not active, since I’m not committed yet to Simple Press. Others I’m getting around to testing, or only use occasionally. Yes, I know it’s a lot.)

    Add New Default Avatar
    BadgeOS *
    bbp buddypress profile information *
    bbPress *
    bbPress Enable TinyMCE Visual Tab *
    bbPress Go To First Unread Post *
    bbPress Stay Checked *
    bbP Signature *
    Black Studio TinyMCE Widget
    BuddyPress
    BuddyPress Groups Extras *
    Content Aware Sidebars *
    Email posts to subscribers *
    Google Analytics by Yoast
    iFlyChat
    LenSlider *
    Link Library
    NextScripts: Social Networks Auto-Poster
    Posts for Page Plugin
    Quick Chat
    Simple: Press
    Simple: Press v5 Importer
    Simple social share
    SlideDeck 2 Lite *
    Social Login
    Stop Registration Spam
    Subscribe/Connect/Follow
    T(-) Countdown
    ToTop Link
    Ultimate Posts Widget *
    Video Thumbnails
    WangGuard
    WordPress SEO
    wp-Monalisa
    WP Ads Within Contents *
    WP Custom Login
    WP Overview (lite)
    WP Symposium Toolbar

    9. Are you using the standard BuddyPress themes or customized themes? I am using Matheson, a theme listed as working with BuddyPress, and it is further customized via css by myself.

    10. Have you modified the core files in any way? No.

    11. Do you have any custom functions in bp-custom.php? I don’t think I have that file.

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? bbPress is deactivated, using Simple Press.

    13. Please provide a list of any errors in your server’s log files. I’ve searched to try and find these, and I have no idea how to find them.

    14. Which company provides your hosting? 1and1

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? If this might be relevant, I will try to find out. Think it’s Linux.

    #211877
    navinachettri
    Participant

    FurtherJohn says, “The details of the problem are our “the_content” filter is being called but the returned content, containing the buttons, is seemingly ignored by BuddyPress pages. Not being too familiar with BP I’m not sure if this can be made to work or its truly a defect in BP.”

    Any help around

    #211876

    In reply to: "Reply"

    Hugo Ashmore
    Participant

    This is really a bbPress question, buddyPress isn’t responsible for how bbPress handles it’s functionality. Try posting the question on bbPress forums.

    shanebp
    Moderator

    You are only filtering for new posts.

    Take a look at buddypress\bp-blogs\bp-blogs-functions.php

    Look for the filter hook you are using.
    Look for this filter hook too: bp_blogs_record_activity_content

    #211623
    Julia_B
    Participant

    Oh yeah buddypress is awesome @ecrip! I’m not complaining just looking for ways to make the most of it.

    It’s not just posting to the homepage for me, my members would get on better with it if the feed showed post threads more like Facebook does (as explained above). I know that’s always going to be tricky with it working in tandem with the bbpress plugin for the forum element, but hope there’s some way of getting closer to it. It would also be great if I could get the site working in app form so it displays a bit better on phones and sends out notifications to mobiles rather than just emails.

    I massively appreciate all the work of the developers, don’t want to sound like I’m moaning here, just trying to optimise it to keep my members as happy as I can. 🙂

    #211622
    ecrip
    Participant

    That’s my concern too. I know the folks who make BuddyPress available (write the program) have spent a lot of time doing so. And all of their efforts are greatly appreciated.

    The fact remains, however, that the ability to add activity posts to the Frontpage is badly needed in today’s mobile society.

    As of today, 60% of my site visitors use a smartphone to visit my site. I have tried myself to add activity posts from my phone. It isn’t easy to do; even for me.

    In the short term what I have added a Help file to my BuddyPress site to try and help users over some of the hurdles that exist with posting to the platform as it is today.

    Hopefully the folks that make BuddyPress available will find a solution for this issue soon.

    #211191
    Henry Wright
    Moderator

    You would add it to your template for the single member page.

    Take a look at the Template Hierarchy article for more info on setting up your BP templates.

    #210720
    crell
    Participant

    Hi,
    Thanks for responding.
    It’s passing to an internal site URL.

    This link below is a recent post
    http://ashbournecyclingclub.co.uk/2014/10/group-ride-monsal-head

    If I then select “Edit my profile” from the menu, it takes me to:
    http://ashbournecyclingclub.co.uk/2014/10/group-ride-monsal-head/1/
    (note it’s appended “/1” to the end of the URL

    Theme is Heuman
    Wordpress 4.0

    Plugins are:
    Advanced Custom Fields
    Version 4.3.9 | By Elliot Condon | View details

    Akismet
    Version 3.0.2 | By Automattic | View details

    Black Studio TinyMCE Widget
    Version 2.0.4 | By Black Studio | View details | Home | FAQ | Support | Rate | Follow | Donate

    BuddyPress
    Version 2.1.1 | By The BuddyPress Community | View details

    Categories Images
    Version 2.4.2 | By Muhammad Said El Zahlan | View details

    Cat Post Type
    Version 1.0.1 | By Michel Bobillier aka Athos99 | View details

    Coming Soon / Maintenance mode Ready!
    Version 0.5.3 | By coming soon | View details

    Contact Form 7
    Version 3.9.3 | By Takayuki Miyoshi | View details

    Contact Form DB
    Version 2.8.16 | By Michael Simpson | View details

    Custom Facebook Feed
    Version 2.1.2 | By Smash Balloon | View details

    Enhanced Media Library
    Version 1.1.2 | By WordPress UX Solutions | View details

    Events Manager
    Version 5.5.3.1 | By Marcus Sykes | View details

    Jetpack by WordPress.com
    Version 3.1.1 | By Automattic | View details

    Leaflet Maps Marker
    Version 3.9.2 | By MapsMarker.com e.U. | View details

    Limit Login Attempts
    Version 1.7.1 | By Johan Eenfeldt | View details

    Maps Marker Pro ®
    Version 1.9 | By MapsMarker.com e.U.

    NextGEN Gallery by Photocrati
    Version 2.0.66.29 | By Photocrati Media | View details | Get help | Contribute

    Post Css Class
    Version 1.0.1 | By Michel Bobillier aka Athos99 | View details

    Quick Featured Images
    Version 8.2.1 | By Martin Stehle | View details

    Regenerate Thumbnails
    Version 2.2.4 | By Viper007Bond | View details

    TinyMCE Advanced
    Version 4.1.1 | By Andrew Ozz | View details

    Types – Complete Solution for Custom Fields and Types
    Version 1.6.3 | By OnTheGoSystems | View details

    Wordfence Security
    Version 5.2.6 | By Wordfence | View details

    WordPress SEO
    Version 1.6.3 | By Team Yoast | View details

    WP-PageNavi
    Version 2.86 | By Lester ‘GaMerZ’ Chan | View details

    WP FullCalendar

    #210719
    linkedbinary900
    Participant

    Where would I add that? I have not enabled a custom BuddyPress theme or anything…

    #210716
    linkedbinary900
    Participant

    I’m really not sure if a plugin has mandated the _wpnonce string or what the deal is… Is it something that BuddyPress adds for security? I have seen it on other links, and works fine for different functions like send public message, etc where the _wpnonce is also used.

    Note: I am only experiencing my problem with not being able to add a friend from a user’s member page. It works fine on the Members List page.

    #210711
    GhostPool
    Participant

    Changing buddypress.js to buddypress.min.js. where? I don’t know about brgallag, but my theme does not manually call buddypress.js and as I mentioned this issue also happens when using the default Twenty Fourteen theme.

    It should be noted I also only experience this issue on a WP Engine server when the “Update Activity Automatically” option is enabled. It doesn’t occur on other servers as far as I can tell.

    #210704
    Joseph G.
    Participant

    This is a known bug https://buddypress.trac.wordpress.org/ticket/5888

    Try changing buddypress.js to buddypress.min.js. This issue was already resolved as of the latest version.

    Cheers!

    #210701
    brgallag
    Participant

    I’ve narrowed it down further and found that unchecking the “update activity automatically” feature in BuddyPress settings solves the problem. Still at a loss as to what’s really causing the problem.

    #210670
    brgallag
    Participant

    Hello, did you have any luck solving this? I’m having the exact same problems with the same setup…except now on WordPress 4.0.

    buddypress.js loads fine on all pages except the site-wide activity page.

    I’ve deactivated all plugins, re-installed buddypress, switched themes, all to no avail.

    I’m hosted on wp-engine.

    Let me know if you were able to solve it.

    #210669
    brittonk
    Participant

    I found it on your ticket system actually so it looks like you guys are on top of it

    https://buddypress.trac.wordpress.org/changeset/8828

Viewing 25 results - 20,151 through 20,175 (of 73,986 total)
Skip to toolbar