Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 14,576 through 14,600 (of 69,016 total)
  • Author
    Search Results
  • #231453
    mrgoldfinder23
    Participant

    Thank you Henry, I am using minamaze on both sites, same theme, same buddypress. Upload profile images box is ticked on both, and yet the bestofbartercard does not give the option to change profile image on one. The settings are identical

    #231445
    djsteveb
    Participant

    @dreamsoft – I have no idea either… if you are a coding guru perhaps looking at the changelog for buddypress 1.9 to see what made things different. My theme guys never explained what the exact issue / fix was…

    If you are not a coding whiz, then I would switch to a new theme and try to mod that to have the same colors and feel of the one you are currently using. Or pay someone to find / fix the issue…

    #231443
    djsteveb
    Participant

    Without knowing everything exactly the way you envision, from reading:

    4 different categories where different Contributors can write new posts and interact with the Participants in the forum (better way to comment and reply to questions using the forum, than WordPress’s commenting system). These Contributors, however, must have their own public profile and allow for Participants to subscribe to their posts. So far, I’ve used different plugins:

    I think if you drop buddypress… do a WP MultiSite install – with 4 sub blogs… look into creating “author pages” – not all themes do that well out of the box… a simple subscribe to blog plugin for each of the 4 blogs.. I think you can install bbpress and mix it with each sub blog – but I have not messed with bbpress in a while, so not sure the best way to connect that.. I think you can enable to the bbpress “sitewide” then each individual sub blog author and enable it or something.. then code that into the sidebar if each blog.. that would do everything you have said I think.. maybe that will get you in the direction you are trying to go.

    I suggest searching the wp plugin repo for plugins that are “multi site” enhancements.. look into “author pages” in the codex, and search for themes that have special author pages to make experimenting easier..

    #231442

    In reply to: Social login

    ShMk
    Participant

    Thanks for the reply,
    I’ve found these 2 plugins that are BuddyPress compatible and looks regularly updated:
    https://wordpress.org/plugins/oa-social-login/
    https://wordpress.org/plugins/wordpress-social-login/
    I’ll give both a try and I hope that at least one will fit my website needs 🙂

    #231433
    danbp
    Participant

    Hi,

    you’ve already asked for this in the past !

    https://codex.buddypress.org/member-guide/notifications/

    By default, each member can activate/deactivate notification (under Your Profile > settings > email)
    Reference: bp-activity/bp-activity-screens.php

    Or see this plugin.

    #231431
    danbp
    Participant

    hi @deshmukh,

    add this to bp-custom.php

    function bpfr_custom_profile_sub_nav() {
    	global $bp;
    	$parent_slug = 'activity';
    		
    	//Add subnav item 	 
    	bp_core_new_subnav_item( array( 
    	'name'            => __( 'Go to Site Activity' ), 
    	'slug'            => $parent_slug, 
    	'parent_url'      => $bp->loggedin_user->domain . $parent_slug.'/', 
    	'parent_slug'     => $parent_slug, 
    	'screen_function' => 'bp_activity_screen_my_activity',
    	'position'        => 60,
    	'link'            => bp_get_activity_directory_permalink(),
    	) );
    }
    add_action( 'bp_setup_nav', 'bpfr_custom_profile_sub_nav' );

    Reference

    danbp
    Participant

    hi @xuanling,

    there is no forum in BuddyPress. You can use bbPress if you want group forums or a general forum.

    Answers to your other questions are here:

    Configure BuddyPress

    Installing Group and Sitewide Forums

    #231418
    djsteveb
    Participant

    @dreamsoft – I had the same problem some months ago – it was indeed a theme issue.
    Of course it was blamed on a buddypress update that changed some things.. but a theme update was the fix – and the theme was a”recent” theme, one that had been updated recently, was a premium theme, and the professional devs advertised it as being 100% compatible with wp 4 and BP 1.9 – which come to find out, it was not. They rolled out a fix a few days later.

    #231416
    djsteveb
    Participant

    @sbraiden – I had similar 24 second page load times, and tried to get advice for enqueing, dergistering, and compacting the multiple and overlapping java and css all these plugins attached to buddypress are mixing in on top of the themes stuff.

    Y Slow gives my BP site with basic plugins an “F” – WP professionals shrug it off – meh.

    (more one all that here: http://premium.wpmudev.org/forums/topic/deregister-enque-compact-css-and-java-jquery-buddypress-load-time )

    I have a sneaky suspicion however that my load times were an issue for me when logged in, and perhaps being logged in as an admin, I THINK that the (stupid) wpmudev dashboard plugin was slowing down my page load speed dramatically more than anything else. It was strange that after I complained of my long page loads, that 2 days later wpmudev had an update for their dashboard thing, and then my page load time went to like 3 seconds. – Coincidence, maybe, nothing definitive. – Everyone else said the pages loaded fine – so maybe it was just an admin thing – or maybe my ghostery blocking gravatar loads or something.

    ANYHOW – in regards to hosting, I have a small buddypress site running fine on a shared server with amerinoc. I have one that is fairly busy running fine on a dedicated server at certified hosting.

    I personally think that most important thing for a WP based site to perform well is blocking all the bad bots.

    I have found that blocking all the naver and badu spiders (And most others) with a robots/txt file has decreased the sql over load (at peak times) on my servers by more than 80%.

    I found that hosting a few wp sites on a shared server or dedicated could cause problems not just with spiders crawling pages too much too fast for indexing, but also all the attempting account creations / account brute force logins – even if they are blocked with something like sucuri or limit login attempts – every time they tried to login – they were using up server resources to load the login page, then hit the database to check credentials.

    I also suggest using a pwd auth like explained here: http://support.hostgator.com/articles/specialized-help/technical/wordpress/wordpress-login-brute-force-attack

    locking down the login with a double thing like that is fine for most WP installs, and a private family / friends BP site should be fine – when the bots can’t login through the first thing there is no need for wordpress to load a bunch of php / css files and pull from SQL a bunch of times just to give a bot a failed login – It becomes a problem for general open to the public buddypress comms I guess.

    Now I set all my non-BP sites to use the double auth, I block all search engine bots aside from the top three selectively with robots.txt – and now just about any server can run fine with wp / bp – especially if some attention is paid to plugin overhead, wp-cacheing tools.

    I have my fingers crossed the new bp-mediapress (sp? and Beta!) plugin thing will decrease the plugin overhead of rtmedia and offer a better alternative for pics and stuff.

    Same random thoughts – I’m not an expert so take my 2 cents with a grain of salt or two..

    #231404

    In reply to: paid membership

    Hugo Ashmore
    Participant

    This isn’t really a BuddyPress question as such. Try googling/searching the WP plugin repo for WordPress subscription / membership plugins, there are a few that will serve your purposes S2Member is generally suggested as a good one.

    #231392
    Lars Henriksen
    Participant

    Thanks Shanebp and danbp – this worked for me, you guys rock!

    This finally translated ‘Groups’ and ‘Members’ on my site as well with just two more ‘cases’ in the code:

    function example_gettext_with_context( $translated, $text, $context, $domain ) {
    
         if ( 'buddypress' !== $domain )
            return $translated;
    
         switch ( $text ) {
    
            case 'Site-Wide Activity':
                return 'Historikeraktivitet';
            
            case 'Groups':
            	return 'Arbejdsgrupper';
            
            case 'Members':
            	return 'Medlemmer';
            	
    
            default:
                return $translated;
        }
    
        return $translated;
    }
    add_filter( 'gettext_with_context', 'example_gettext_with_context', 11, 4 );
    #231358
    danbp
    Participant

    Don’t double post please. You’ve already asked for this here.

    Closing this topic.

    #231353
    djsteveb
    Participant

    @alirat

    Have you tried or are you using the rtmedia plugin?

    or checked out the new beta http://wptavern.com/mediapress-now-in-beta-a-new-media-gallery-plugin-for-buddypress

    I THINK both of these add that functionality?

    On one of my bp sites with rtmedia enabled I have an “attach files” button under activity box when logged in.. I THINK that allows uploaded a pic to the activity stream(?) not sure if this is enabled by the rtmedia plugin or something else. I could check further.

    #231352
    valuser
    Participant

    Hi @ndh01,

    I think you could do this just with buddypress.

    (just please backup database before….. etc)

    Go to Profile Fields—> (Click) Add New Field Group

    Add New Field (text) say Field Name virgin

    Then add the following to your functions.php

    function vub_login_redirect($redirect_to, $set_for, $user){
    
    	global $current_user, $bp, $wpdb;
    	$val = 'no';
    	if (bp_get_profile_field_data (virgin, $user -> ID )!=""){
    	$redirect_to = bp_core_get_user_domain($user->ID) .'/groups/';	
    }else{
    	xprofile_set_field_data( 'virgin', $user -> ID, $val);
    	$redirect_to = bp_core_get_user_domain($user->ID) .'/profile/change-avatar/';
    }
    
    	wp_redirect( $redirect_to );
    	exit();
    
    }
    
    add_action('login_redirect', 'vub_login_redirect', 20, 3);

    Alternatively you could as you have suggested create a new meta.

    A useful plugin for that would be User Meta Manager

    Add Custom Meta say a text field Name — firsttimer

    then add the following (instead of the above) to your functions.php

    function vu_login_redirect($redirect_to, $set_for, $user){
    
    	global $current_user, $wpdb;
    	$firsttimer = get_usermeta($user -> ID, 'firsttimer',single);
    	$val = 'no';
    	if (!empty ($firsttimer)) {	
    	$redirect_to = bp_core_get_user_domain($user->ID) .'/groups/';
    }else{
    	update_user_meta( $user -> ID,'firsttimer',$val);
    	$redirect_to = bp_core_get_user_domain($user->ID) .'/profile/change-avatar/';
    }
    	
    	wp_redirect( $redirect_to );
    	exit();
    
    }
    
    add_action('login_redirect', 'vu_login_redirect', 20, 3);

    Obviously change the redirects to wherever you want the user to go.

    #231351
    Dave Lozier
    Participant

    @sbraiden – I recently helped migrate a site off of wpengine because of performance issues and the price wpengine wanted for more horse power under the hood. Their next level of service was going to cost $3200 a month. I suggested linode.com and was also amused by the fact that wpengine runs on top of linode.

    The page generation times for wordpress/buddypress/bbpress along with various plugins (gravity forms, buddypress xprofile custom fields type, gravity forms upload rules, gravity forms wysiwyg, gd bbpress toolbox, cloudflare…) was not good. It is still not where we want it either, unfortunately.

    The site is quite active, pushing 30,000 members and over 1.3+ million rows in the posts table. On average the page generation times are about 1.5 seconds for logged in users. Adding a new bbpress topic/reply can time out sometimes though. (still on the list to track down and fix)

    We utilize Cloudflare out front for a CDN and their threat/spam protection. Their service is free but if you need more page rules to balance out caching the pro service level is $20 a month.

    On linode we have a node balancer in front of two 4 core app server nodes. The app server nodes each connect directly to their own 8 core database nodes in a master master setup. This will be changing down the road once the database indexes are trimmed down with some denormalization. The cost for the node balancer, two 4 core and two 8 core nodes is $260 a month but that’s also allowing for some room to grow, capacity wise.

    Server software is a combination of nginx, apache (threaded), php-fpm, glusterfs (upload directory only), memcache, zend opcode cache and mariadb. Nginx is the web server in front of apache which serves up static files from the glusterfs file system. Nginx is caching the static content being served up by apache along with full page caching (fastcgi) for anonymous visitors. Cloud flare is also caching the static content and to date we aren’t having any performance issues with IO and glusterfs.

    I hope this helps. It can be done but it takes some effort (and money) to do so.

    #231348
    digitalpur
    Participant

    Hello @emidio007,

    you can look here: http://www.digitalpur.de/wordpress-buddypress-rtmedia-limit-upload-images/

    This could help you. I have implemented a similar solution for one of my clients. at the File “rtMedia.backbone.js” i have created a loop.

    i have searched for “FilesAdded” and have added there this loop. You must costumize it for your needs.
    while (up.files.length > 4) { up.files[4].remove(); }

    The Problem here: Every time you update “rtmedia”, the “rtMedia.backbone.js” will be overwritten.

    #231347
    danbp
    Participant

    1) site title is in WP General settings
    2) https://buddypress.org/support/topic/changing-the-default-activity-filter/

    In reply to your today’s trac ticket, you can try this trick
    https://buddypress.org/support/topic/edit-buddypress-pot-file/#post-230857

    #231345
    danbp
    Participant

    hi @alirat,

    as no add media button exists.

    Is not intended for. Notices are for brief messages, and html is stripped for security reason.

    To get that, consider this plugin.

    #231329

    In reply to: post follow option

    Henry Wright
    Moderator

    Are you using BuddyPress Follow?

    Ref: https://wordpress.org/plugins/buddypress-followers/

    #231325

    In reply to: post follow

    Henry Wright
    Moderator

    I’ve replied here

    #231321
    OsamaNuman
    Participant

    I tried to continue my conversation but it was closed (the last one)

    the thing is that I am not trying to translate BP using Polylang, I am actually following the process like: this and this
    but the issue is that I dont know how to open the translated BP profile page !?

    Regards

    #231317
    paulgriffiths
    Participant

    Thanks so much for all the very prompt help!
    I have however already found this code when I searched for the problem in the forum and have already added it to mt functions.php file so (to be clear, not trying to be rude) I am seeing the behaviour you describe with comments on blog posts created AFTER the “site tracking” function was turned on in Buddypress settings. Comments on blog posts created before this was turned on are ignored.

    If I go to the dashboard I can see I can see the last comments on the system – see the user admin has replied to an old blog post and the user griff (me) has replied to a new blog post:
    comments

    However under the Buddypress Activity feed only the comment by me is showing:
    activity

    #231308
    danbp
    Participant

    hi @osamanuman,

    as you asked the same on the polylang support, i would recommend that you wait for an answer of the plugin author.
    I’ve never used that plugin, anyway, by reading the description it appears that Polylang is a tool for translating any kind of WP content.

    Of course BuddyPress is a WP plugin, but as it use pages differently as ordinary WP content, i don’t think that you can use Polylang to translate BuddyPress pages using the plugin default behave: translating by content. You’ll probably have to try the option translate by directory name.

    While searching the support forum, i found this, about BP compatibility. Discouraging.

    If you read attentively the documentation, you will see that it becames very difficult/complicated to translate BuddyPress because of some permalink settings.

    #231299
    Susan Braiden
    Participant

    Hi, Henry. Thanks a bunch for your response. I’ve been trying to work through this for several months, and the lead developer on my ISP’s DreamPress installation has said straight up that BuddyPress does NOT work on DreamPress for the reasons I mentioned in my initial post. The Varnish caching is not meant to support a membership site.

    (And I have had the same experience you had with 1&1. I left them for DreamHost years ago and am really glad I did. That’s what makes this currently hitch kind of sad. DreamHost has generally been really good with support.)

    Thanks again, and best wishes!
    Sue.

    shayne
    Participant

    You could try this plugin. It is kind of what you want.

    https://wordpress.org/plugins/buddypress-announce-group/

Viewing 25 results - 14,576 through 14,600 (of 69,016 total)
Skip to toolbar