Forum Replies Created
-
http://www.cometchat.com/buddypress-chat says
Friends List Synchronization
Automatic friends list are created for your users with the CometChat bar. All online users are displayed when there is no friends system on your website.Is Friends component enabled and an user who is logged into chat has enough friends?
I have no idea, but this is what came at the top of my mind. Thanks.Is it WP 4.1.1 and BP 2.2.1 and Multisite. If so go to …/wp-admin/network/settings.php
Registration Settings – Select radiobutton for
Both sites and user accounts can be registered.
and save.If there is a Page created via Add New Page with title “Register” but no content
and you have chosen this via ..wp-admin/network/admin.php?page=bp-page-settings
as Registration page, things should work.After doing the above log out as admin, and visit the “register” link.
Thanks.This ticket may help you https://buddypress.trac.wordpress.org/ticket/6124
ThanksEach Group can have its own blog which can have different theme.
Each group per se probably cannot have its own theme but can have its own distinctive cover photo and its own thumbnail/photo/icon/logo. Thus they can look different indeed.Different content : Yes, each group can have different content, in fact that is why the Groups are there for.
It depends on what theme you are using. Its a persistent problem with BP when various plugin add various buttons around the Whats new box in various ways in absence of any protocol.
If you are using BP specific themes like Thaim you can have a look or submit issue at https://github.com/imath/thaim/issues/5
Thanks
@danbp Thanks
It seems it has been kept unresolved from WP WP 3.3.1
which means WP 4.1.1 is not usable for subfolder sites as of now.https://core.trac.wordpress.org/ticket/24585
https://core.trac.wordpress.org/ticket/20171http://seventhqueen.com/support/forums/forum/kleo/kleo-general-questions
Hi @sjjenkins
This should not be very difficult. Some small change in the template file but since they have no downloadable version its difficult to say.
This may contain some clue –Showing some profile fields in member’s profile header not working after update
Just curious, how does the Whats New box looks like when you use
buddypress-activity-privacy, buddypress-activity-plus and any Media plugin like rtmedia ?
Whats your site (if its not private) url ?Thanks.
@modemlooper – In Buddypics users can Favorit a photo in the photo page itself as well as in the Activity stream. If you Favorit in any of these two places it is updated in the other.
If you unfavorite in one place it is updated in the other too.This is how it should work, and it does work in that way. Members remain eternally confused what they can do on the photo page, why they cannot do it on the blog post page.
buddypress-like do not have this 2-way liking.
Thanks 🙂
@danbp Yes the plugin is network activated. Try visiting/clicking the links like Archives / Categories – Refresh and come back to the site home page.
If you have been unable to reproduce it will mean I am doing something weird or its a browser related problem ( I am using the very latest FF ).
This post is not meant to take up moderator time ( that time is really precious and since we have WP BP stuff scattered over so many sites) – I just posted to see if any user has similar issues and workarounds. This happens in Twenty Fifteen theme only, so there are other themes which I can use without any issues,
Thanks a lot for testing @danbp.
This is a WP bug it seems. WP Multisite when enabled causes this. It does not matter whether BP is there or not.
Is there any ticket for this, some one knows ? Thanks.Hi @danbp Thanks.
Again when trying with
WP 4.1.1, BP 2.2.1 – default installs
define( ‘WP_ALLOW_MULTISITE’, true );
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
Registration Settings : Both sites and user accounts can be registered.
Using default Twenty-Fifteen theme
Using Apache serverI found some more things : see this picture

Now UserA signs up for both account and site.
When he visits the category “Uncategorized” –> Page not found
When he creates a post using say, Format: Gallery –> Clicking on ‘Gallery’ : Page not found
Now if he visits the UserA/wp-admin/options-permalink.php – just visits and does nothing, no saving – all the errors vanish. “Uncategorized”, link “Gallery” everything works.
Same for user B , user C …
No idea if this is normal and expected or not.
I am searching how to do this automatically without the user having to compulsorily visit the Permalinks page. Mind you, the Permalink is already set to ‘Day and name’ – which is not “Default”, thus Permalink is already otherwise okay.If any user has time here, can try the above steps to reproduce, and if any clue/remedy can please share. Thanks.
Hi @danbp
This is working perfectly for Buddypics.
I was wondering if it works for Buddypics why it will not work for Blog posts.
So I tried putting the code – it shows Favorit link below blog post but it does not work as it misses a number. If this can be made to work, you can favorit a blog post from both activity stream and the blog post itself just like comments .(BTW @modemlooper seems to be not in this forum these days, same about @imath)
Thanks.
Additional idea to this : Exclude “Cancel Friendship Request” from this list if its not ajaxified like above to exlude those to whom request has been sent 🙂
Sorry for the nagging 🙂
Thanks always
Also see this page
Spanish (Chile) Español de Chile es-cl es_CL 4.0 95% More
Spanish (Colombia) Español de Colombia es-co es_CO No site 0% More
Spanish (Mexico) Español de México es-mx es_MX 4.1.1 100% More
Spanish (Peru) Español de Perú es-pe es_PE 4.1 99% More
Spanish (Puerto Rico) Español de Puerto Rico es-pr es_PR No site 0% More
Spanish (Spain) Español es es_ES 4.1.1 100% More
Spanish (Venezuela) Español de Venezuela es-ve es_VE 4.0 54% MoreSo, this was the plugin idea I posted sometime ago.
In the above, now if you click “Add friend” some ajax trick should show Friendship Request sent
and the row should fade out, and lower names should come up 🙂I do not know ajax tricks and am a bad learner 🙂
Thanks a lot once again @henrywright for this great, great snippet.
Wow @henrywright you rock!
Cool! My quick test shows its work perfectly.
How to say thank you.Many, many thanks.
3. See this thread – https://buddypress.org/support/topic/report-user-report-abuse-flag-something/
Mods – can you please see why my reply here just vanished!
Thanks
Hi @henrywright
Can you make a plugin out of it 🙂
The main problem is how do I get the$idsarray or whatever.This code by Brajesh does that
add_action('bp_ajax_querystring','bpdev_exclude_users',20,2); function bpdev_exclude_users($qs=false,$object=false){ //list of users to exclude $excluded_user='24,2,3';//comma separated ids of users whom you want to exclude if($object!='members')//hide for members only return $qs; $args=wp_parse_args($qs); //check if we are listing friends?, do not exclude in this case 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; }Now all that I want is to $excluded_user = logged in user’s friends. How to do that ?
Thanks
Hi @henrywright
Thats nice, very useful.
Can you kindly say the exact file name where such code can be put? It is not clear to me where I put this code.
Can you please, please say how can I have a Member list page ( or any other page) that lists the Members who are not the logged-in user’s friends?
This means that a logged in user can see only names with “Add friend” buttons by the side of the names.Thanks
Thanks @danbp for the detail write-up.
This problem happened with “Categories” only, and nothing else as far as I tested. Not just on localhost, but in live site too which I need to test more.I will follow your words.
One thing if “Before installing BuddyPress, activate pretty permalinks to what you want, EXCEPT default. Save.” is a strict requirement, the BP installer pages should say this, force me to do this before proceeding. Our goal should be solve everything programmatically 🙂
Still better, WP installer should by default set permalink to such protocol that does not interferes or gets disturbed by BP ( since BP is just no other plugin but an important part of WP family – infact it is one of 3 major-most flavors of WP – WP, WP Multisite, WP+BP)Thanks again.
@svenl77 Thanks for the link. Its nice.
Does it work on Multisite? The form can deposit posts to individual blog? and not one central blog or blog 1? Any demo of that please?
Specific settings I am asking about:
WP 4.1.1, BP 2.2.1 – default installs
define( ‘WP_ALLOW_MULTISITE’, true );
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
Registration Settings : Both sites and user accounts can be registered.If it does work with the above settings has it solved this category problem?
Thanks.

