-
meg@info replied to the topic removing admin and user from members list in the forum How-to & Troubleshooting 11 years, 3 months ago
Add the code in your functions.php, the code exlcude all admins from buddypress. You can edit the code and personalize it to make it work for your needs.
-
@mercime replied to the topic [Resolved] Blog page exists, don't want Blog page. in the forum How-to & Troubleshooting 11 years, 4 months ago
@benjino blog page has got nothing to do with the bbPress plugin’s settings (Settings > Forums – not discussions). Clear your cache because I see no /blog page in your site.
-
bp-help replied to the topic don't want registration page to show after login in the forum How-to & Troubleshooting 11 years, 4 months ago
@benjino
This is a great community and I am sorry your issue cannot be resolved. Several people including myself has tried to help you but the issue is that your not comfortable with php. We have pointed you in the right direction but there comes a point when there is an expectation to do your part as well. Please don’t be offended as there are…[Read more] -
bp-help replied to the topic don't want registration page to show after login in the forum How-to & Troubleshooting 11 years, 4 months ago
@benjino
Then take @hnla ‘s advice. If you don’t know php then you have 3 choices,
1.) learn some php
2.) hire a developer
3.) just don’t play around with anything above your skill level.Without trying to sound rude or condescending you have had more than enough help for your topic and nobody can spoon feed you how to get it done when you…[Read more]
-
bp-help replied to the topic don't want registration page to show after login in the forum How-to & Troubleshooting 11 years, 4 months ago
@benjino
Try following 3) Logged-out menu in this tutorial:
http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/ -
Henry replied to the topic don't want registration page to show after login in the forum How-to & Troubleshooting 11 years, 4 months ago
@benjino use the last function i posted, making sure to replace CHANGE-THIS with the name of the menu you want to target. The name of the menu can be found in WP Admin, when you set-up the menu, you had to give it a name.
-
Henry replied to the topic don't want registration page to show after login in the forum How-to & Troubleshooting 11 years, 4 months ago
@benjino the whole menu is filtered so you can build as much of it or as little of it as desired.
Take the portion of my code that builds the link:
<li><a href="/register" title="Register">Register</a></li>
Changing this to
[Read more]
<li><a href="/link-before" title="Link before">Link before</a></li>
<li>
<a href="/register"… -
Hugo Ashmore replied to the topic don't want registration page to show after login in the forum How-to & Troubleshooting 11 years, 4 months ago
@benjino before Henry or bp-help posted if you had searched and scrolled down you would have seen the post to which I referred, but no problem :).
-
bp-help replied to the topic don't want registration page to show after login in the forum How-to & Troubleshooting 11 years, 4 months ago
@benjino
This one works for me! Just add it to bp-custom.php or to your themes functions.php between opening and closing php tags.
/* Add registration menu item to logged out visitors only */
add_filter( 'wp_nav_menu_items', 'bphelp_custom_registration_nav_menu_item' );function bphelp_custom_registration_nav_menu_item($menu) {
if (…[Read more]
@benjino
Active 4 years, 6 months ago