Buddypress 1.2.8
Suffusion 3.7.8
Suffusion BP pack 1.02
http://www.olson30.org
login:test
pswd:test
Strange (to me) problem. If you log in to the forums page, and click on the “New Topic” button, a new topic dropdown drops then immediately sucks back up again. Ideas?
Also, does anyone know how to change the format of the forums page? I want to spread the columns out more, making it more readable.
Out of the box, BuddyPress has only one instance in a WP multisite installation and requires to be activated network-wide in order to aggregate information from subsites created.
This is not to say that it’s not possible to create BuddyPressMU (there are just awesome coders/programmers out there) — but with major changes coming up with BP 1.3, then WP 3.2, and then BP 1.4, etc how many times are you going to twist and turn to extend BuddyPress that way and get it working with all BP/WP plugins without the support and technical skills of a large community? But hey, that’s just me.
Of course if you’re one of the awesome coders/programmers I’m thinking of, this will not be an insurmountable challenge at all … it’ll be a walk in the park 
Going back to your scenario, could create 4 physical subdomains (instead of one WP with 4 virtual subdomains) in addition to your main site and activate BP in each site = 5 BP instances. Others might like to chime in with better configuration.
== i got the pages to show in the footer now by creating the custom menu ==
Yes, you’re supposed to create the custom menu in Appearance > Menus as I mentioned in posts above
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/cant-get-pages-to-display-in-footer-unless-logged-in-as-admin/?topic_page=2&num=15#post-94793
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/cant-get-pages-to-display-in-footer-unless-logged-in-as-admin/?topic_page=2&num=15#post-94911
== but the pages still show a 404 error unless i am logged in as admin. are pages hidden or restricted in buddy press until logged in. ==
Looks like there was a redirect for a split second to sportzmoney.xn.com or something of that sort. Where did you download the bp-columns theme? Should be from WP repo.
Change theme to bp-default to check if Pages are still redirecting to 404
BuddyPress is amazing and I won’t be the least surprised if it can do what I need right out of the box. Alas, after searching through documentation and forums I have come up empty.
I would like to be able to have certain sub-domains be isolated from the rest of my site.
Suppose I have a primary domain (domain.com) with a number of sub-domains (sub1.domain.com, sub2.domain.com, sub3.domain.com, and sub4.domain.com). Is there a way I can set up BuddyPress so that sub1.domain.com and sub2.domain.com share the same BuddyPress instance as domain.com while sub3.domain.com and sub4.domain.com have isolated instances of BudyPress.
By “isolated instances”, I mean their groups, members, blogs, forums, etc. would not be visible by anyone outside of their sub-domain. In addition, group name, blog names, forum & topic names, etc. could be identical in each Isolated instance. E.g. sub3.domain.com and sub4.domain.com could BOTH create a group called “MyGroup”. Their group members would only see their version of “MyGroup”.
I noticed that the BPDB class has a set_prefix method and was wondering if maybe I could use this to create seperate instances of the BuddyPress tables for each isolated sub-domain. Perhaps calling $bpdb->set_prefix($sub_domain_prefix) during BP initialization with a prefix that is unique for that sub-domain. But, I really don’t know enough about BP yet to have a clue where that will land me.
Any thoughts would be GREATLY appreciated.
Glad you got it going. Good luck!
Cheers.
It’s either a CSS or a Javascript conflict, most likely. I haven’t time to install this other plugin and test, but maybe someone else does.
this issue still happening
I have Group Forum options in the Notification Settings also. Will this plugin deal with that?
`bp_get_member_profile_data` is only specific to one member. It will not grab all users with a certain xprofile field nor is there a built-in function that will do what you want.
I’d write a custom function to return the user IDs that match a certain field. Then use the `include` parameter in the members loop to do what you want to do.
eg. `if ( bp_has_members( ‘include=’ . my_custom_function() ) ) : `
`my_custom_function()` will have to be written!
If you know your way around WordPress, check out the `wp_bp_xprofile_data` table in your DB and a way to query the WPDB for hints. The `xprofile_get_field_id_from_name()` function will help as well.
This is probably a really basic question – and I know there are some other posts related to this – but could someone please explain how I can ad a favicon to my site, which uses the default buddypress theme. I’m very new to this, so please use basic language and if you talk about folders, let me know where they are!
Thanks
Harry
Everything is perfect. If I make bank off of this idea you are totally getting a check!
This isn’t as straightforward as it seems.
If you know your way around WordPress, here’s one way of doing what you want to achieve:
The favorite count for each activity item is stored in the activity meta table (wp_bp_activity_meta). So you could probably query the DB and grab all the “activity_id” sorted descendingly by the “favorite_count” meta_value.
Then you could use a BP activity loop and use the `include` parameter to add the activity IDs you grabbed from your WPDB query.
@naijaping can you share what caused the overflow and how you resolved this?
Recommend that you post your question re slideshow in Custom Community theme to Themekraft Devs @svenl77 and @konradS at http://themekraft.com/forums/
Single WP: Settings > General > Membership – check anyone can register
WP Multisite: Network Admin > Settings > Settings > Allow user registration OR Allow user account and blog creation (can’t remember exact words
)
OK amazing. I have one last question. Everything seems to be working fine except except I am not sure how to make registration enabled. After this everything should be up to go.
For the hundredths time thanks!
– Mike
@kumaraneks Welcome to BuddyPress.
Many of your requirements are available out-of-the-box with BuddyPress. Some others are met by plugins. Test drive BuddyPress at http://testbp.org/ to see available features.
BP requires a solid WordPress installation – https://codex.buddypress.org/getting-started/before-installing/
BP Components like Forums, Groups, etc. – https://codex.buddypress.org/getting-started/configure-buddypress-components/
and https://codex.buddypress.org/buddypress-site-administration/buddypress-forum/
and https://codex.buddypress.org/getting-started/group-settings-and-roles/
Check out BP plugins – https://wordpress.org/extend/plugins/search.php?q=buddypress&sort=
Find answers to queries
— via our search box on top right corner
— via Google or other search engine
— if neither works, post a topic in this forum
I needed to do this recently too… this is the technique I used:
$group = groups_get_group( array( ‘group_id’ => $group_id ) );
Found on http://bluemandala.com/buddypress-plugin/127/buddypress-get-group-details-from-group_id/
So in order to get the link to your groups try something like this
global $bp;
$group = groups_get_group( array( ‘group_id’ => $group_id ) );
home_url( $bp->groups->slug . ‘/’ . $group -> slug )
Your theme’s block of code for main navigation is from line 94 to 113 in http://pastebin.com/w0cGZvji
If you are using wp_nav_menu feature, you can easily add links to your BP Component pages in Appearances > Menu area.
also, from @sbrajesh, an alternative to the the Stealth Mode for Super Admins – Put this code in bp-custom.php and None of the site admin activity will be recorded nor will you appear in the Who is Online/ recently active members widget. –
`add_action(“plugins_loaded”,”bpdev_init_sm_mode”);
function bpdev_init_sm_mode(){
if(is_site_admin())
remove_action(“wp_head”,”bp_core_record_activity”); //id SM is on, remove the record activity hook
}`
OK I think I have this part solid!