-
bp-help replied to the topic Should i use Buddypress? in the forum Miscellaneous 10 years, 1 month ago
1.) For invites try: https://wordpress.org/plugins/wordpress-mu-secure-invites/
To keep logged out visitors from accessing BP pages check out: http://bphelpblog.wordpress.com/2014/09/27/private-bp-pages/
Usernames can’t be changed and if you don’t want users changing their password you would need to custom code it unless you can find a code…[Read more] -
bp-help replied to the topic Should i use Buddypress? in the forum Miscellaneous 10 years, 1 month ago
@sanz112
Short answer is you will need multiple plugins as well as some custom code to achieve your requirements. If you do enough research you may find the plugins and some code you can use to help in your endeavor on and off this forum. If you can’t write code or invest the time in doing the research to fulfill your requirements then you will…[Read more] -
bp-help replied to the topic [Resolved] I need sample data please! in the forum Installing BuddyPress 10 years, 1 month ago
@sanz112
Just because it hasn’t been updated doesn’t mean its not compatible. This works for me with the latest WP/BP versions.
https://wordpress.org/plugins/bp-default-data/ -
bp-help replied to the topic Redirect if not logged in and not on register page in the forum Creating & Extending 10 years, 1 month ago
@0901091-1
Untested but you can try this:
<?php
function my_redirecter() {
if ( ! is_user_logged_in() && !bp_is_register_page() )
{
wp_redirect( home_url() . '/register/');
exit();
}
else
{
}
}
add_action( 'init', 'my_redirecter' );
?>
Not sure what you wanted to do with the else so I left it…
-
bp-help's profile was updated 10 years, 1 month ago
-
bp-help replied to the topic Friends, messages & members list only shows two in the forum How-to & Troubleshooting 10 years, 1 month ago
@struth
Since activating twentyfourteen resolved your issue then it is an issue with your original theme. You may want to check out that themes functions.php and see if there is maybe a function that hooked into the members-loop.php but then again it may be something else all together. -
bp-help replied to the topic Friends, messages & members list only shows two in the forum How-to & Troubleshooting 10 years, 1 month ago
@struth
Have you altered the members-loop.php in any way directly or via a function that hooks into it?
wp-contentpluginsbuddypressbp-templatesbp-legacybuddypressmembersmembers-loop.php
If not have you tried activating different themes such as twentyfourteen to see if the issue persists? -
bp-help replied to the topic sign up goes fine, but no confirmation email arrives in the forum How-to & Troubleshooting 10 years, 1 month ago
@caesarhills
Have you tried deactivating all plugins other than buddypress and activating a known theme that works well with BP like twenty fourteen? Sometimes plugins and themes can cause issues with the activation email. If that resolves the issue then you will know it was a faulty plugin or theme. -
bp-help replied to the topic sign up goes fine, but no confirmation email arrives in the forum How-to & Troubleshooting 10 years, 1 month ago
@caesarhills
Have your test users checked the spam folder in their email because sometimes it goes there. You may also want to check your servers error logs as well. -
bp-help replied to the topic [Resolved] export user to csv with more info? in the forum How-to & Troubleshooting 10 years, 1 month ago
@rubyji
Please don’t reply to threads going on 4 years old as it clutters the forum and bumps a thread that is ancient. You also replied on an almost 2 year old thread here: https://buddypress.org/support/topic/export-users-and-xprofile-data/
I can respect you wanting to help and inform users that this can be accomplished with the plugin you…[Read more] -
bp-help replied to the topic Can Buddypress do this? in the forum Miscellaneous 10 years, 1 month ago
@masten7
To post content a user will be required to be logged in out of the box. For the media part you can use one of the following plugins:
https://wordpress.org/plugins/buddypress-media/
or:
https://wordpress.org/plugins/buddypress-activity-plus/
To force the user to create a profile before interaction with the site you can use this…[Read more] -
bp-help replied to the topic [Resolved] PHP for BuddyPress pages? in the forum How-to & Troubleshooting 10 years, 1 month ago
@tomatillo
bp_is_activity_component, bp_is_members_component, bp_is_profile_component, etc.
Reference: -
bp-help replied to the topic Just installed Buddypress 2.1.1. No clue in the forum Installing BuddyPress 10 years, 1 month ago
@summersoul
Have you considered hiring a pro? Try posting: -
bp-help replied to the topic BuddyPress 2.1.1 is available for download. in the forum Miscellaneous 10 years, 1 month ago
Cheers @imath
-
bp-help replied to the topic Register and Activate pages not working in the forum How-to & Troubleshooting 10 years, 1 month ago
@modernmedia
Just a piece of friendly advice to keep you from confusing your users, I wouldn’t add register or activate pages to your main menu because once they are registered and activated and logged in then those links will only confuse people when they get redirected to the home page. -
bp-help replied to the topic Can users no longer delete their own activity? in the forum How-to & Troubleshooting 10 years, 1 month ago
If anyone else encounters this issue then read the info in the link above and apply the patch @r-a-y supplied then you will be good to go.
-
bp-help started the topic Can users no longer delete their own activity? in the forum How-to & Troubleshooting 10 years, 1 month ago
Fresh install of the latest WP 4.0 and BP 2.1 and no other plugins. I have noticed that users can no longer delete their own activity because the delete button is gone. I have tested using twenty thirteen and twenty fourteen themes and I get the same result. However the admin has the delete button and is able to delete all activity. I have checked…[Read more]
-
bp-help started the topic Can users no longer delete their own activity? in the forum Installing BuddyPress 10 years, 1 month ago
Fresh install of the latest WP 4.0 and BP 2.1 and no other plugins. I have noticed that users can no longer delete their own activity because the delete button is gone. I have tested using twenty thirteen and twenty fourteen themes and I get the same result. However the admin has the delete button and is able to delete all activity. I have checked…[Read more]
-
bp-help started the topic Can users no longer delete their own activity? in the forum Installing BuddyPress 10 years, 1 month ago
Fresh install of the latest WP 4.0 and BP 2.1 and no other plugins. I have noticed that users can no longer delete their own activity because the delete button is gone. I have tested using twenty thirteen and twenty fourteen themes and I get the same result. However the admin has the delete button and is able to delete all activity. I have checked…[Read more]
-
bp-help replied to the topic Add shortcodes to or otherwise edit member/user/ page in the forum How-to & Troubleshooting 10 years, 1 month ago
@iburnthings
Please review: - Load More
@bphelp
Active 9 years, 1 month ago