Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `
…
` or `
..
` to `
// Titles Of Respective BP Page Templates //
`, just watch out when you do this in the /activity/index.php page.
Save files.
You’re welcome
== the defalt doesnt look so great for that. ==
The bp-default theme can be tweaked to look like a gaming theme if you know some CSS/HTML at the very least. Change background color to dark/black, add some silver/gold medals/otherstuff with some cool header font/s and you’re good to go.
Or, you could always download a regular WordPress theme with the look you want. Then you will only have to install/activate BP Template Pack plugin and go through the Appearance > BP Compatibility process. We have a list of template-packed WP theme to date https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#template-packed-wordpress-themes
I just checked your site. There’s only one navigation menu in your installation, the main navigation under the site title. Aside from that, you’re using the Suffusion theme which is a theme framework supported readily by the theme author. I suggest that you post this question at the Suffusion theme forums or at https://wordpress.org/tags/suffusion
== when I Push Register – it only takes me to the home page of the wordpress installation. ==
This happens when you’re already logged in and try to register. So Log out frst.
Codebase of WPMU aka WordPress MultiUser was merged with that of core WordPress in version 3.0. Since then, you only need to “Create a Network” from a single WP to go multisite. You only create a network (whether BP is installed or not) when you want to give your users the ability to create a blog in your multisite installation. Otherwise, stay on single WP.
For more info about multisite
– http://halfelf.org/ebooks/wordpress-multisite-101/
– http://halfelf.org/ebooks/wordpress-multisite-110/
That was a bug – https://buddypress.trac.wordpress.org/ticket/3724 and fixed in trunk. If you know how to make the change –> https://buddypress.trac.wordpress.org/changeset/5298
Multi-domain isn’t built into WordPress, so how can BuddyPress know what domains it could use or make available (in a drop down box, for example)?
Excellent spot, thanks for recreating.
Would you post this as a bug on https://buddypress.trac.WordPress.org please? You can use your username and password from this site.
== The extra classes are gone now, but the menu is still showing up as a bullet list. ==
The menu was never rendered as bullet list so I don’t understand what you mean that it “is still showing up as bullet list.” The latest version of Frisco theme is version 1.5.04 so do make sure that’s the version you’re using.
Also, make sure that you didn’t delete anything from the navigation menu in your theme’s header.php. You can compare it with theme’s original header.php file – https://themes.svn.wordpress.org/frisco-for-buddypress/1.5.04/header.php
If you made any changes to the stylesheet, then re-upload theme’s original style or copy over . https://themes.svn.wordpress.org/frisco-for-buddypress/1.5.04/style.css
Hi Aces, thanks for the advice, I think I found the real problem, and I´ll call it ¨Bluehost¨, I use their hosting service and have several problems (everytime I use a new theme something is not working)….I may have to find a hosting service that is real friendly with wordpress because not all of them are optimized….
@karmatosed
thanks this theme looks great, i test it out just to try it out but some how the background image/background color/ color links dont seem to work? at all.. im running buddypress 1.5.5 and wordpress 3.3 but it seems the theme works great no fatal errors nothing which i think its weird also another thing i wanted to ask you is there a way i can easily show the background color/ background image in different parts of the profile example like in the profile header box like below
`
body.user-profile-header{
background:();
}
`
@mercime
i have surely looked into that but for me its hard to add color picker functionally and stuff and set user id sava data so its best to have a live sample already created so i can start from it and tweak it,
but either way thanks for the help.
You’re welcome
Thank you for marking this as resolved.
That took care of the issue. I was confusing the current bbPress forum with the BP forum. Thanks for the reply.
i have been working in localhost URL is like: http://abcdev.arn/dcomm (i installed wordpress under this folder, and i installed BP, BB press plugins only. Theme is buddypress default theme).
I created 1 menu, 4 cusom categories (for my specific purpose). After installing BP, i got a message like—->: “BuddyPress is almost ready. You must update your permalink structure to something other than the default for it to work.”
If i change the permalink to other structure, my custom categories are redirects to error page. But the BuddyPress links are redirecting to error pages in either case!!
On top of the home page i can see “login”, “sign up” links. login is working fine but sign up is giving error like —> “The requested URL /dcomm/register/ was not found on this server.”
Please ask me for any other details you require..
Thanks,
Chenna
Based on the HTML structure of your theme, you need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your wp-clearvideo theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /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 the following:
`
<?php
global $wp_query;
$postid = $wp_query->post->ID;
if ( get_post_meta( $postid, ‘post_featpages’, true ) == “Yes” ) { ?>
‘,’
‘); } ?>
Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `
` or `
` to `
`, just watch out when you do this in the /activity/index.php page.
Save files.
WordPress comes with a up to date version of jQuery. BuddyPress works with it. Maybe track down where your site is loading an old version of jQuery, and kill it.
@subway1968 If you do not need Group Forums, you can go to dashboard menu BuddyPress > Components and deactivate (uncheck) “Discussion Forums”
@ed161718 I will address your question at the link you posted above so we have one forum topic about easel woes.
You don’t say what your add action is hooked to ( or what the line number refers to ). Do you have a `’walled_garden’` hook in your template?
I would suggest trying the following (I use something similiar but allow access to groups and forums):
`
function sh_walled_garden()
{
global $bp;
if( bp_is_register_page() || bp_is_activation_page() )
return;
if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( bp_get_signup_page() );
}
add_action( ‘bp_init’, ‘sh_walled_garden’ );
`
I also substitute `add_action( ‘wp_loaded’, ‘sh_walled_garden’ );` on a different site….
`bp_init` and `wp_loaded` are “native” to buddypress/wordpress so you don’t need to create your own template hook….
This is in a bp-custom-php file – using buddypress v1.5.5 as I haven’t upgraded to 1.5.6 yet….
Have you looked at this?
https://buddypress.trac.wordpress.org/ticket/4060
>2. Right now we only have the following tables set to use MyISAM, the rest being InnoDB:
Yup, it’s a compromise – but for us the benefit of row-locking in InnoDB outweighed the fulltext issue.
We don’t generally allow text searches.
And thanks for sharing your setup info.
Now that BP is being used for sites with larger and more active memberships, more devs are having these problems.
I think collecting info re tuning, caching, etc. approaches on a page somewhere in buddypress.org would be very useful and would generate some helpful ( and confusing ) discussion by us non-DBAs.
hello,
this is a WP question. That said you can tag more into your post.
Read here: https://codex.wordpress.org/Customizing_the_Read_More
Also you can use some plugins, this one for example: https://wordpress.org/extend/plugins/more-fields/
Hi-thanks modernlooper for your reply
(I have now updated to latest BuddyPress & bbPress plugins-my site runs both plugins!).
Thankfully I have fixed the problem now but it was a bit tricky..
I now think the problem was an issue with x2 specific plugins-Wp Article Fetch & Tweet this.
On deactivating both of these from Network Admin (my site is running WP multisite) my blog (running WordPress & BuddyPress) is back to normal.
The Tweet this plugin is somewhat old & not updated so there could be some code issue with it. As for the WP Article fetch plugin I haven’t used it much so disabling it is no great issue!
(I will look for a new ‘Tweet this’ plugin as Twitter plugins are quite useful)
I still though need to get BuddyPress forums working properly on my site (I have posted several times for help with this on the support forum here but still BuddyPress forums are not running well on my site! If I wasn’t so stubborn to try & get BP forums working I would have deleted it ages ago & used an alternative eg Vanilla plugin or other-so if anyone can help me I would be grateful-but I don’t really expect any response as sadly I have had such limited response in the past from here to help me with this! I think BuddyPress is a misnomer; it could be better called somethingelse but I won’t type it now!..
…).
== @jamesewelch => WordPress version 3.3.2 ==
Deactivate BuddyPress and bbPress. Upgrade to WP 3.4 first. Then activate and upgrade BuddyPress and bbPress to latest versions.
Thanks for the reply shanebp.
1. I’m using Batcache, https://wordpress.org/extend/plugins/batcache/ and Memcached Object Cache https://wordpress.org/extend/plugins/memcached/ both of these use memcached for caching. We’ve used W3TC in the past on our WP-only sites, but it got be a little to unstable for our tastes… So far these seem to be working good, though we have to remember to bounce memcached in addition to PHP-FPM when we make a code change.
2. Right now we only have the following tables set to use MyISAM, the rest being InnoDB:
bp_groups
bp_groups_groupmeta
bp_groups_members
usermeta
users
We tried having them all to InnoDB, but due to its poor text searching performance compared to MyISAM, we switch back those 5.
3. TMPFS is worth its weight in gold. 
Wow, 30K, very impressive! I’m hoping that there is a lot of performance that can be squeeze out of our DB server, which will be looked at soon by actual DBAs (I do not in anyway claim to be one…). If not, I’m looking forward to BP 1.6 for some of those performance enhancements found from bug #4045!
Hello, there is a simply solution, few Extension as Buddypress shows messages errors with PHP 5.4, we could hide them.
Bonjour, la solution ci dessous en attendant que Budypress et d’autres extensions ( a vérifier au cas par cas) ne provoque pas d’erreur avec le php 5.4.
We must hide the messages errors / Nous devons cacher les erreurs PHP :
In /wp-includes/class-wp-error.php
/***************************Add after the first < php *************************************/
> after php to close it, don’t appear in this message, don’t lost it to close php
> after php n’apparaît pas dans ce message, ne pas l’oublier pour refermer la balise.
/***************************Ajouter après la première balise< php *************************************/
error_reporting(0);
@ini_set(‘display_errors’, 0);
Or simply directly to wp-config in the root.
Ou simplement dans le fichier wp-config à la racine.
PLus d’info dans / Most info in : http://www.wordimpressed.com/wordpress/php-turn-on-or-off-error-reporting/
With each update of WordPress, we must using this solution
A chaque mise à jour de WordPress, il faut refaire la manipulation si besoin.
Cordially / A bientôt.
CyclonUnited
Bonjour, je suis aussi hébergé chez Legtux, je confirme le problème vient bien de la version de PHPmyAdmin, j’ai installer WordPress en local avec:
Wamp + PHPMyAdmin 5.4.3= buddypress ne fonctionnait pas
Wamp + PHPMyAdmin 5.3.3=buddypress fonctionne
Avez vous reussit à faire fonctionner Buddypress ? Sinon je propose de faire un message à l’administrateur Legtux pour voir si il ne peut pas downgrader phpmyadmin vers la version 5.3