-
bp-help replied to the topic Make register page as my default landing page buddypress in the forum Miscellaneous 9 years, 9 months ago
@saish_neugi
This tutorial might help to get you going in the right direction.How to Build a Facebook-Style Members-Only WordPress-BuddyPress Site
-
bp-help replied to the topic Me and my friends activity steam? in the forum How-to & Troubleshooting 9 years, 9 months ago
@chatty24
Until the core devs gets this worked out you can use shanebp ‘s solution here:
https://buddypress.org/support/topic/only-friendsyou-in-activity-feed-has-solution-been-found/
It works with the latest WP/BP just keep in mind the admin can still see all activity and subscribers can also see the admins activity but subscribers will only see…[Read more] -
bp-help replied to the topic Me and my friends activity steam? in the forum How-to & Troubleshooting 9 years, 9 months ago
@chatty24
Until the core devs gets this worked out you can use shanebp ‘s solution here:
https://buddypress.org/support/topic/only-friendsyou-in-activity-feed-has-solution-been-found/
It works with the latest WP/BP just keep in mind the admin can still see all activity and subscribers can also see the admins activity but subscribers will only see…[Read more] -
bp-help replied to the topic 404 Page for Activity, Groups, Members in the forum Installing BuddyPress 9 years, 10 months ago
@henrywright
Just my two cents worth but I think if there was a check within BP that “Anyone Can Register” was indeed checked before installing BP would solve tons of issues like this because if someone fails to do this before installing BP then they have to manually associate those pages. If it is checked then they are created on the fly without…[Read more] -
bp-help replied to the topic [Resolved]How to redirect registration page to activity? in the forum How-to & Troubleshooting 9 years, 10 months ago
@tatakatte
Did you make sure you set your registration page as a static page in dashboard/settings/reading because I just tested it and it works as expected. On my dev environment when I go to the site without being logged in it redirects me to the registration page. Once I log in it redirects to the activity stream. Isn’t that what you…[Read more] -
bp-help replied to the topic [Resolved]How to redirect registration page to activity? in the forum How-to & Troubleshooting 9 years, 10 months ago
@tatakatte
Did you make sure you set your registration page as a static page in dashboard/settings/reading because I just tested it and it works as expected. On my dev environment when I go to the site without being logged in it redirects me to the registration page. Once I log in it redirects to the activity stream. Isn’t that what you wanted? -
bp-help replied to the topic [Resolved]How to redirect registration page to activity? in the forum How-to & Troubleshooting 9 years, 10 months ago
@tatakatte
Maybe your slug is wrong in the URL. Try this:
function my_login_redirect() {
if ( is_user_logged_in() && bp_is_register_page() )
bp_core_redirect( home_url() . '/activity/' );
}
add_action( 'template_redirect', 'my_login_redirect' );
Reason being you may have changed the pages name but if you didn’t change the slug as…[Read more]
-
bp-help replied to the topic [Resolved]How to redirect registration page to activity? in the forum How-to & Troubleshooting 9 years, 10 months ago
@tatakatte
Should work fine in the themes functions.php as @henrywright specified or in bp-custom.php -
bp-help replied to the topic [Resolved]How to redirect registration page to activity? in the forum How-to & Troubleshooting 9 years, 10 months ago
@tatakatte
Did you put Henry’s code in with opening and closing php tags? Make sure there is no white space between the opening and closing php tags as this will give an headers already sent error. -
bp-help replied to the topic multi communities in one website in the forum How-to & Troubleshooting 9 years, 11 months ago
-
bp-help replied to the topic Force a avatar in the forum How-to & Troubleshooting 9 years, 11 months ago
-
bp-help replied to the topic Numbers in the forum Requests & Feedback 9 years, 11 months ago
@southerncalm
Do a search here. This has been asked many times. Self help on forum topics that has been already addressed many times goes a long way. -
bp-help replied to the topic Restriction for registering in the forum How-to & Troubleshooting 9 years, 11 months ago
@surenpillai
Yes you will need BP installed before using the plugin. -
bp-help replied to the topic Restriction for registering in the forum How-to & Troubleshooting 9 years, 11 months ago
@surenpillai
Have you tried: https://wordpress.org/plugins/bp-registration-options/ ? -
bp-help replied to the topic How does a member find their profile page? in the forum How-to & Troubleshooting 9 years, 11 months ago
@colorfullady
For Profile:
if ( is_user_logged_in() ) {
<a href="<?php echo bp_loggedin_user_domain(); ?>">Profile</a>//link to users profile
}
For Members directory:
if ( is_user_logged_in() ) {
<a href="<?php echo home_url() . '/members/'; ?>">Members</a>//link to Member Directory
}
You will need to find where in your template files you…[Read more]
-
bp-help replied to the topic Is a Private BuddyPress Community Possible? in the forum How-to & Troubleshooting 9 years, 11 months ago
@wadsworth4
I also have another plugin that I was told on the plugins forum that it worked on multisite called “Private BP Pages.” However I never actually tested it myself on BP with multisite. I just got that info from some of the users of the plugin. I used to offer it on the WordPress repo up to about 3 months ago but I have since removed it.…[Read more] -
bp-help's profile was updated 9 years, 11 months ago
-
bp-help's profile was updated 9 years, 11 months ago
-
bp-help replied to the topic Why is the UX of buddypress.org/support so bad? in the forum Installing BuddyPress 9 years, 11 months ago
@timrourke
I agree that it should be easier to find and should be very obvious. New visitors on buddypress.org probably won’t realize that you have to hover over the “BuddyPress.org” link to the left of the “My Sites” link to find the “Create New Topic”link. Hopefully in the future this will be changed. -
bp-help replied to the topic Is a Private BuddyPress Community Possible? in the forum How-to & Troubleshooting 9 years, 11 months ago
@wadsworth4
What plugins did you use for making BP multisite private? I offer some premium plugins to make BP private but I personally haven’t tested it with BP multisite because I don’t really use it. For my purposes my Private Community For BP plugin does everything I need it to do. - Load More
@bphelp
Active 9 years, 1 month ago