Save files.
B. At the bottom of the same 16 files, replace:
`
I think I got that down, but BuddyPress is still not working for me and now even some pages won’t show up its crashing down!
… last FYI: I also have the following plugins active.
All in one Favicon Version 4.0 | By Arne Franken
BP Group Management Version 0.5.2 | By Boone Gorges
BuddyPress Version 1.5.4 | By The BuddyPress Community
BuddyPress Album Version 0.1.8.11 | By The BP-Media Team
BuddyPress Docs Version 1.1.19 | By Boone B Gorges
BuddyPress Like Version 0.0.8 | By Alex Hempton-Smith
BuddyPress Mobile Version 1.5.2.3 | By modemlooper
BuddyPress Private Community Version 0.6 | By NipponMonkey
CubePoints Version 3.1 | By Jonathan Lau & Peter Zhang
CubePoints Buddypress Integration Version 1.9.8.4 | By Tosh Hatch
Envolve Chat Version 2.3 | By Envolve.com
Events Manager Version 5.1.3 | By Marcus Sykes
Google Maps Lite Version 2.4.1 | By Ve Bailovity (Incsub)
Jetpack by WordPress.com Version 1.2.2 | By Automattic
VoucherPress Version 1.4 | By Chris Taylor
1. does the privacy plugin by Jeff work with BP 1.5.4? Has anyone ever tested or enhanced it?
It doesn’t work. (properly) Yes, afew people have ‘enhanced’ it. Have a look at @modemlooper‘s privacy plugin – https://buddypress.org/community/groups/buddypress-profile-privacy/
2. Is there ever going to be a core privacy module ever for BP? If yes, then in which version can we expect this?
Yep. It’s already coded and is set to be released in 1.6 (next major update)
Have a look at the Trac ticket that details it – https://buddypress.trac.wordpress.org/ticket/3695#comment:10
“I think when prioritizing the tasks for upcoming release, this should of the highest priority. Things like theme/css bugs and changes, minor bugs can be ignored. This one feature will make this software complete.”
I disagree. Features should NEVER come before bugs… i hate cockroaches all over my site 
If you have created a child theme of bp-default theme:
1. copy over create.php file https://buddypress.trac.wordpress.org/browser/tags/1.5.4/bp-themes/bp-default/groups/create.php
2. open up create.php, and above line #99 add: ` `
and then after line #106 add: “
so that you, the Site/Super Admin can create hidden groups if you want to
In effect, the hidden group option would look like this now:
`
`
3. upload the file to your child-theme-folder/groups/create.php
I can only confirm that issue was resolved in BP 1.5.2 with this fix https://buddypress.trac.wordpress.org/changeset/5338
Im using Buddypress version 1.5.1.
I do not believe I have any membership plugins activated.
The only thing I am doing is limiting each user to a single blog, auto creating that blog without user interaction and then auto assigning that member to the main blog.
Edit: This is not happening to all of my members. Only recent ones, possibly after an upgrade of WordPress and Buddypress a few months back.
Thanks for your reply,
but i don’t want to share on facebook or twitter etc.
i want to share within the site only like facebook share?
Thanks in Advance
I took a look at the ticket… Wouldn’t it be better to move it to the author field rather than just pull it from the description field? That way the WordPress widget option can use the author info if the blog owner wants to or not.
For me, it would be valuable to figure out a way to actually figure out how to scrape a title out of the first line of input and then use the rest in the description field if that was possible.
I don’t know if the bpfb short code is anything to do with BP Activity Plus or not, but it may be work contacting its authors directly for supporting and letting them know about the problems when viewing it in an RSS Feed. That’s not something we can fix in BuddyPress core (obviously).
Thanks for the feedback about the RSS feeds, I made a ticket: https://buddypress.trac.wordpress.org/ticket/4082
Based on the HTML structure of your theme, you’d need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your iFeature theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.
Download the 6 clean BP folders to your computer hard drive.
A. At the top of each of those 16 template files I linked to above, replace
`
with: http://pastebin.com/h0RCY8rX
Updated 050812 — Simplified with right sidebar
`
Save files.
B. At the bottom of the same 16 files, replace:
`
`
with the following (except for registration/register.php): http://pastebin.com/yqnMPAQD
Updated: 050812 — Simplified with right sidebar
`
`
with the following for registration/register.php: http://pastebin.com/q7te52hk
Updated 050812 — Simplified with right sidebar
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});
`
Save files.
C. Upload the 6 BP folders containing the 16 files you revised up to your server wp-content/themes/ifeature/
D. Copy the style modifications made in BP Twenty Ten https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ to the bottom of your theme’s stylesheet. Adjust styles to taste after.
thanks for this code, answers my next need in current BP project. in answer to last two questions, try this plugin I found: https://wordpress.org/extend/plugins/advanced-access-manager/ has allowed me to create custom BP roles recognized by BP core and other plug-ins like Justin Tadlock’s roles-at-registration, role-scoper, etc.
You have to enable registration in WordPress side. Go to dashboard menu > Settings > General — Membership – and check “Anyone can register”
No Luck, buddypress said that it was a wordpress to server issue. but my server company is saying that the gd library is installed and working fine. So i dunno
== I did install through the one click installation. ==
WordPress should be installed manually i.e. via FTP, cpanel, etc. and NOT via webhost scripts which bring about numerous issues when BuddyPress is activated. – https://codex.buddypress.org/getting-started/before-installing/#system-server
Boone Gorges oon wordpress.stackoverflow.com figured it out. is_page() will return true on BP content, because BP (since 1.5) uses WP pages as its basis for display. So we changed it to this and now I have a sidebar only for profile pages.
`<?php
if (is_single()){
include(STYLESHEETPATH.’/sidebar-single.php’);}
elseif (is_page() && !bp_is_profile_component()){
include(STYLESHEETPATH.’/sidebar-index.php’);}
elseif (is_category(‘fame-game’)){
include(STYLESHEETPATH.’/sidebar-fame-game.php’);}
elseif (bp_is_profile_component()) {
include(STYLESHEETPATH.’/sidebar-act.php’);}
else {
include(STYLESHEETPATH.’/sidebar-index.php’);}
?>`
Hi, I am using a Linux server ( Not local server ) , and installed wordpress and buddypress manually using an ftp client. My server configurations are
PHP Version : 5.2.9
Mysql : 5.0.92
Apache rewrite module not enebled
I have not installed wordpress to the root directory of my domain.
That is the directory where i installed wordpress is “www.mysite.com/demo”
Thanks a lot for your answers
Running wordpress 3.3.1 and BP 1.5.4.
Changing to the BP default theme, error still occurs.
I am running Another WordPress Classifieds Plugin (AWPCP); and when I deactivate this the error stop. So it has something to do with this plugin although I can seem to find out why.
@indyowls I would need pastebin of some other files as well. But if you’re using the ifeatures free theme here https://wordpress.org/extend/themes/ifeature then you won’t need to add any more pastes.
@videogamerznet Arras is no longer hosted at WP Theme Repo.
Which Arras theme version did you download from Google code home http://code.google.com/p/arras-theme/downloads/list ? You might want to install the a) Theme Check plugin and b) Log Deprecated Notices plugin to check if the Arras theme version you have has been updated for WordPress 3.3 at the very least before thinking of making it compatible with BuddyPress.
@roguedjinni Are you using this colorway theme? — > https://wordpress.org/extend/themes/colorway
Are you on Windows or Linux server or locally hosted on WAMP, MAMP, or XAMPP?
If on webhosting service, did you install WordPress via webhost script like Fantastico or Simplescripts, etc.? Start from scratch and install WordPress manually as in upload via FTP/cPanel/etc. Otherwise, please check server requirements plus WP configurations https://codex.buddypress.org/getting-started/before-installing/#system-server
@pfelberg I know you wanted the second option. But based on the HTML structure of your theme, you’d need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your Minimatica theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.
Download the 6 clean BP folders to your computer hard drive.
A. At the top of each of those 16 template files I linked to above, replace
`
with
`
Save files.
@Ekine I’m using the built-in WordPress gallery for posts, along with this plugin for the lightbox overlays: https://wordpress.org/extend/plugins/wp-jquery-lightbox/
@mnasir79 Yeah, I just threw the code for the Facebook Platform’s page on it until I get my own up, heh.
I’m still cleaning up some sections of the theme. When all that’s done, I’ll start focusing on publishing some content and trying to build up a community. I’m still not entirely happy with how some of it looks (notably the activity and member profile pages), so if anyone has any suggestions or criticisms, I’d love to hear their thoughts.
Yes you got the right theme!
I really need help to replace my current Buddypress theme with the Frisco theme.
Upgraded my site from a non-buddypress wordpress site to a Buddypress site, and I now I want to replace the default BP theme with the Frisco theme.
Which Frisco theme are you referring to? URI to theme?
WP Theme Repo has https://wordpress.org/extend/themes/frisco-for-buddypress which is child theme of BP-default theme