Forum Replies Created
-
You are welcome.
I am not sure about the fatal error(as it should not appear).
Since the Buddypress menu is available in the admin now,It seems the plugin got activated.
try following
1.rename the wp-content/bp-themes directory to something else[as you upgraded from 1.0.3 which used old theme architecture]
2.copy the themes bp-sn-parent and bp-default from buddypress/bp-themes to wp-content/themes
Go to site back end.Enable the themes and activate the bp-default.hopefully,It will be working.
hi,seems there have some files partially present in your plugins directory.
try using FTP and deleting the buddypress folder inside plugins.Then try manually uploading the buddypress (using FTP to avoid any partial download issues) and activating it.
Let us know,how it goes.
Yes, you are right.
Buddypress allows you to integrate an standalone bbpress installation.To have full control,Install bbpress separately and Integrate it to buddypress.
You will have your buddypress groups with forums enabled with bbpress,as well as the standalone bbpress forum accessible.
Use Firebug,find the ids of the navigation element(anchro’s id) and add css in your theme with the bullet image as background.This is how it is done for default items.You can do the same.
hey JJJ
Thanks.That’s what I guessed too.
Anyway,Thanks for the suggestion.
hey
Try this one,hopefully It will help.
https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/
Otherwise you can always edit the template file for profile.
hi,Your page will not be accessible as http://yourdomain.com/features.php as it resides in your theme,It should be accessible via http://yourdomain.com/wp-content/themes/your_theme_name/pages/features.php
Now my advise,better look at How to use page template in wordpress.
https://codex.wordpress.org/Pages#Page_Templates
You can use your features.php as page template and create a page features, so this file can be accessed via yourdomain.com/features
Hope it helps.
sorry,I mean try activating bp-member theme
hey,seems you are using the skeleton member theme ,which is a bare bone theme.and I think,That’s why the page is looking so.
Either you need to put your own css or activate b-member theme(not the sekelton)
Hope,It should help.
@socialpreneur
Do you have the template file “plugin-template.php” in your current theme.
try copying this from the bp-sn framework and your settings page should work.
wow Andy,That’s a great news.I have been running the trunk version and testing features.looking forward to beta
hi dwpers
are you using Limit blogs per user plugin.
This is a known issue with that plugin.let me explain it.
If s user does not selects a blog,he is added as a member of your main site(subscriber or what ever default signup role is,this is a wordpress Mu requirement).So the blog count for user becomes one even if he has not signed up for the blog.
You can manually add the user to new blog.
Please go to wpmu backend->Site Admin->Blogs
In the add blog option,enter the users email address(the email address of existing user and create his blog).he will be automatically assigned the new blog(removed from the main blog) and can do the things as normal.
hope it helps.I am working on the newer version of this plugin which will take into consideration the factor (when user has no self created blog,it should be considered as zero).
Thanks
Brajesh
Can you list the plugins you are using ? may be we can better understand then..
Well,I sent the link to Diego,and here is for others,if you are looking for a similar solution.
you may use the slightly hacked slimbox.
Get it from here
regards
Brajesh
It will not stop activation mail.All things are same,except the password enter by the user is shown/sent at activation,if user does not enters a password,then a random generated password is sent to the user.
you are right about activation.
I agree with you on adding another password field for confirm password,will do it in the next version

Thanks
Brajesh
Well,Now you can.You can allow your users to set their own password at signup.
I just created this plugin for you all .have a look here
https://wordpress.org/extend/plugins/cosmic-bp-user-signup-password/
Hope it helps.
Thanks
Brajesh
hey, point me to the wp plugin , you are using(as there are so many plugins for the effect).
I will modify it and check ,whether it works or not.I think,it can be made to work sitewide easily.
regards
Brajesh
Hello there
Have a look at it here
bp_search_form() in bp-core/bp-core-templatetags.php
But again, not advisable to directly edit.make a local copy ,give it different name and call it in your theme.
hi Kunal,
Try this one.
Put it inside a file in the mu-plugins folder
<?
function js_restrict_access(){
global $bp, $bp_unfiltered_uri;
if (!is_user_logged_in() &&(BP_GROUPS_SLUG == $bp->current_component )){
bp_core_redirect( get_option('home') . "/register" );
}
}
add_action( 'wp', 'js_restrict_access', 3 );
?>And It will work.Let me know if it works or not.
hi
Login to your wordpress Mu as admin.
then go to SiteAdmin->Options
Find the field “Allow new registrations” ,and select the option ” Enabled. Blogs and user accounts can be created.” and click update options.
Now logout and try registering.
I hope it should work.
hello Joe
As far as overwriting the template tags are concerned,That is not allowed.You can only overwrite pluggable functions(In case of wordpress/buddypress).
As far as I see, the bp_login_bar() is a normal function(template tag), you may have a look at the code in buddypress/bp-core/bp-core-templatetags.php,so you can not overwrite it.
Yes, if you want a customize the look of the form/output generated by it, you can use a work around.
Copy the code for bp_login_bar and put it inside a new function say bp_custom_login_bar() inside your theme’s functions.php,now you may modify the code inside the bp_custom_login_bar() to make it look as you want.
The only extra work you will have to do is, you will have to replace all the calls of bp_login_bar tag in your template by bp_custom_login_bar.
Hope it helps.
If I misinterpreted your question,please clarify.
hi Stef
Can you point to the site.I hope you meant the top navigation bar.On my test site(I am also using buddypress 1.0.1),It is showing as usual.If you can point to your site,may be we can help.