-
bp-help replied to the topic buddy press forum plugin in the forum Miscellaneous 11 years, 4 months ago
@shameermohamed50
Even after you install bbpress you will still need to configure it depending on if you plan on using group forums, sitewide forums, or both. Use this link which I had provided previously to get an idea of setting them up:
https://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/
After…[Read more] -
bp-help replied to the topic buddy press forum plugin in the forum Miscellaneous 11 years, 4 months ago
@shameermohamed50
Something is getting lost in the translation here. I know there is a BuddyPress plugin hence we are in the BuddyPress support forums but you keep mentioning a “BuddyPress Forum Plugin.” If you want forums then you will need to install bbpress and use the links I supplied. You can get bbpress…[Read more] -
bp-help replied to the topic New Private Community Plugin For BP in the forum Creating & Extending 11 years, 4 months ago
@espellcaste
Thank you, and in future releases I will be using the comments I get to make adjustments but the thing is I will never be able to satisfy everyone’s requirements. You may want it that way but another user may like it the way it is, or want something totally different. I do appreciate the positive comment, I may bump it up to 5…[Read more] -
bp-help replied to the topic buddy press forum plugin in the forum Miscellaneous 11 years, 4 months ago
@shameermohamed50
The link I supplied above explains the creation of the page. You may also want to add that page to a custom menu:
https://codex.buddypress.org/user/setting-up-a-new-installation/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/
As far as I know there is no plugin named BuddyPress Forum Plugin. As stated…[Read more] -
bp-help replied to the topic New Private Community Plugin For BP in the forum Creating & Extending 11 years, 4 months ago
@espellcaste
There is a new version that is totally refactored on the repo.
https://wordpress.org/plugins/private-community-for-bp-lite/ -
bp-help replied to the topic buddy press forum plugin in the forum Miscellaneous 11 years, 4 months ago
@shameermohamed50
You need to go to dashboard/settings/general and check the box anyone can register. -
bp-help replied to the topic buddy press forum plugin in the forum Miscellaneous 11 years, 4 months ago
@shameermohamed50
I am assuming you are talking about bbpress forums since BuddyPress no longer comes packaged with bbpress as of BP 1.7 This should help explain how to set it up.
https://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/ -
bp-help replied to the topic Registration page not working in the forum Installing BuddyPress 11 years, 4 months ago
@shameermohamed50
You will get more help if you start a new topic and clearly state your requirement. It is also helpful to include WP/BP versions, theme used, and plugins used. -
bp-help replied to the topic Gmail inviter in the forum Third Party Plugins 11 years, 4 months ago
@marathifacebook
I am not trolling, but since you are being rude you can fix your own problem. Good Luck! -
bp-help replied to the topic Gmail inviter in the forum Third Party Plugins 11 years, 4 months ago
If it is shared then you are limited to the CPU resources they allow you. I have used invite anyone and it worked for me so I am just saying that there is the possibility that it is your server, and not the plugin but it could also be other plugins, or even a theme that is causing your issue. Have you tried basic trouble shooting procedures?
-
bp-help replied to the topic Gmail inviter in the forum Third Party Plugins 11 years, 4 months ago
@marathifacebook
BTW you really need to assign a front page in Dashboard/Settings/Reading because landing on a page not found is not very enticing! -
bp-help replied to the topic Gmail inviter in the forum Third Party Plugins 11 years, 4 months ago
@marathifacebook
Could be your server is useless at sending out the invites. Some are so you may want to check that out! -
bp-help replied to the topic How Do I Hide Extended Profile Fileds from Users in the forum How-to & Troubleshooting 11 years, 4 months ago
@nobodymove
Have you tried reverting to twenty twelve theme or bp-default theme to see if your issue persists?
If so then try bulk deactivating all those plugins other than BuddyPress and then reactivate each one individually and test if the issue you are having persists against each one of those plugins as you reactive them individually. I know…[Read more] -
bp-help replied to the topic How Do I Hide Extended Profile Fileds from Users in the forum How-to & Troubleshooting 11 years, 4 months ago
@nobodymove
This is not default behavior. Please see:
https://buddypress.org/support/topic/when-asking-for-support-2/
And supply all the info you can regarding your install! -
bp-help replied to the topic [Resolved] Buddy Registration Link in the forum Creating & Extending 11 years, 5 months ago
@disqusnow
If you add this code to the text widget it will work. I just noticed your register slug is different so I adjusted the code below. Tested and works!
[Read more]
<?php
if ( !is_user_logged_in() ) {
?><a href="<?php echo (bloginfo('url') . '/register-2');?> ">Register</a><?php
} else {
echo "Welcome… -
bp-help replied to the topic Creating New Plugins in the forum Creating & Extending 11 years, 5 months ago
@modemlooper
Makes sense to me. I had been doing that but as I have browsed through other plugins code I have noticed a number of them adding the add_actions near the bottom unless like you said they are within a function. I appreciate you letting me know the correct WP standards because it is cleaner and easier than scrolling up and down and…[Read more] -
bp-help replied to the topic show header item when user not login in buddypress in the forum How-to & Troubleshooting 11 years, 5 months ago
@maan18
I am not certain I understand your requirement but you can try:
https://github.com/bphelp/private_community_for_bp_lite -
bp-help replied to the topic [Resolved] Buddy Registration Link in the forum Creating & Extending 11 years, 5 months ago
@disqusnow
This will fix you up as long as you added that code to enable php in widgets!
<?php
if ( !is_user_logged_in() ) {
?><a href="<?php echo (bloginfo('url') . '/register');?> ">Register</a><?php
} else {
echo "Welcome Back";
}
?>
-
bp-help replied to the topic Confusing members – Space in User Registration in the forum How-to & Troubleshooting 11 years, 5 months ago
@marbler
Try this out courtesy of BuddyDev: -
bp-help replied to the topic Creating New Plugins in the forum Creating & Extending 11 years, 5 months ago
@modemlooper
This is what I am adding in the loader.php per your advice. I hope it looks good. I have tested it and I get the effect I want so thank you for the advice.
[Read more]
/*** Make sure BuddyPress is loaded ********************************/
function private_community_for_bp_lite_bp_check() {
if ( !class_exists( 'BuddyPress' ) ) {
add_action(… - Load More
@bphelp
Active 9 years, 1 month ago