Forum Replies Created
-
premium.wpmudev has a plugin that can redesign the dashboard
So how do I unhook it? Which files should I look at? Thanks
This seems interesting. Where was that wpmu plugin to categorize members? Because I was thinking of implementing this on my site as well. My bp site is about mma, and I want to make separate categories for fighters, fans, and trainers. This seems like a pretty hard thing to do.I hope someone can shed some light on this.
Sorry my bad . That plugin doesn’t work anymore, though.
Anyways I finally managed to make it work and customize the Title tags to make it a bit SEO friendlier.
To anyone else who wants pretty Title Tags, all you have to do is put something like this to your bp-custom.php
<?php
function my_page_title($title){
if ( is_home() && bp_is_page( ‘home’ ) ){
echo bloginfo(‘name’); echo ‘ | ‘; echo bloginfo(‘description’); }
elseif ( is_single() || is_category() || is_page(‘172’)) {
echo wp_title(‘ | ‘, false, right); echo bloginfo(‘name’); }
else {return ($title);}
}
add_filter(‘bp_page_title’, ‘my_page_title’, 10, 2);
?>
The Pages where you want the custom title tag to appear need to be specified or the title tags of the directories will get messed up.
But honestly I didnt care as much about the title tags of the directories.
This is inspired by the code from Burt Adsit on another thread I found. It’s all over the place but it works so if anyone has a better rendition, then do tell me please
anyone????
looks like you got the buddypress skeleton theme enabled. Or you havent uploaded the child theme if youre using buddypress 1.1. Cuz that’s what it looks like to me, as im trying to study the new theme structure as well
Ouch, Thank god im on a reseller hosting account. Looks like you cant just run buddypress on any random hosting company.
I did some digging and apparently it doesnt matter where your links come form, whether its related in your niche or not. Although there is a heavier weight on links related to your niche, but backlinks to your site aint too bad either.
For that matter, count me in on this one Mohit
UBD Block Ad Plugin works just fine, if you want to put ads in your theme. Its a free plugin from unique blog designs
Cant wait for 1.4 I wonder when its gonna come out?
Cant wait for 1.4 I wonder when its gonna come out?
How did you remove the blog authors link from the admin bar?
Great info, I got mine working. I just set the additional users to authors instead of contributors and it comes out fine
Hi!
I also have the same problem as him. I just upgraded my installation to wpmu 2.8 and buddypress 1.03 and when I go to myurl.com/members I dont see the lsit of members. When I click on it when not logged in, I get a blank profile page, that says “not recently active”. By the way I installed the default buddypress member theme and this still happens.
So what have we done wrong??
I really hope someone here could help us.
Thanks