Search Results for 'Hide Admin'
-
Search Results
-
So here is the problem and MY solution. Might not work for you.
What I’m using: WP 3.3.1, BP 1.5.4, & CIMY Extra Fields 2.3.7I register users from my WordPress page, NOT my BuddyPress page. So not myurl.com/register BUT I AM USING myurl.com/wplogin.php?action=register
What was happening: CIMY generates a key before BuddyPress generates a key. THEN, Buddypress would send out its own email, but WordPress is looking for the CIMY key to activate the user.
Also, when BuddyPress was sending out the activation email from bp_core_filters.php, NOT bp_members_signup.php. It seems that bp_core_filters.php does not seem to have the function to activate a user, but bp_members_signup.php does.
When I would register users from my BuddyPress page instead of the WordPress page, the activate email would work just fine. The email was also being sent from bp_members_signup.php, NOT bp_core_filters.php. How do I know? I altered the email message in filters.php, but then got a different email when I registered through BuddyPress and not WordPress.
Okay. So what did I do?
bp_core_filters.php was overriding my CIMY activation email. When I disabled BuddyPress, I was able to register users through CIMY and my activation link even said ‘?cimy_key=838494040383830209’ (not a real key, obviously) and not just ‘?key=8393834929282’
Before you do this, save a clean copy of bp_core_filters.php somewhere different, so if this doesn’t work for you, you can put the old file back in without any problems.
I went into bp_core_filters.php and DELETED lines 224-255. This starts with:
?function bp_core_activation_signup_user_notification( $user, $user_email, $key, $meta ) {
$activate_url = bp_get_activation_page() . “?key=$key”;
$activate_url = esc_url($activate_url);
$admin_email = get_site_option( ‘admin_email’ );if ( empty( $admin_email ) )
$admin_email = ‘support@’ . $_SERVER;?Then it ends with, on line 255
?add_filter( ‘wpmu_signup_user_notification’, ‘bp_core_activation_signup_user_notification’, 1, 4 );?
Delete all code between lines 224 and 255. If you have WPMU, above that is the email function for WPMU, in lines 181-222.
Why am I using CIMY and not just extending the profile fields on BuddyPress? I needed to collect address data. It was a requirement to collect address data from the registration. But, it would then display publicly on the profile in BuddyPress. I couldn’t have that. I just wanted the data in WordPress, hidden. Thus, I’m using CIMY.
Also, I use CIMY and hide the buddypress admin bar to strangers. I use the plugin login logout and place the widget in a sidebar to direct to the correct login screen, not the buddypress login screen.
Check it out: http://mediabridges.info
BuddyPress is running but is not handling any registration, activation, etc. But users can still use it.
hi all.
My users find it confusing to have 2 menus once they have entered forums page or groups page.
I’ve added the activity, groups, forums etc pages to my admin bar but I want to hide the top menu on the default buddypress admin theme.Can anyone point me in the right direction please?
Many thanks.
I tried searching for this but keep coming up with topics related to the admin bar. Apologies if this is a duplicate question.
I am maintaining a site for a local single dating group. As the admin, I am shown on the member list but would really rather not be as I am not interested finding a date through the group

Is there a way to hide myself from the member list on the list page?
(http://www.siouxlandsinglemingles.com/members)
thanks!!
trishiaMy members would love to have the ability to hide/mask the name of the topic starter for a specific group. Reponses would still show the user, but the topic starter would remain unknown (except for, I guess, admins/moderators). It’d be nice if the user could choose to remain anonymous or not, but if it is an all or nothing deal, they’d prefer anonymous.
The purpose for this in this group is to receive honest feedback on creative writing (ie remove the ego from the post so that friends and rivals will not skew their responses to the work itself)
I do not see anything like this in the plugin list.
Topic: hide admin from members list
I apologize if this has been addressed elsewhere, but my search here didn’t turn anything up.
The blackish BP bar across the top of the website. I know that this:
define(‘BP_DISABLE_ADMIN_BAR’, true);
…can be used to hide it. Our client will want us to do that. But before we do that, I want to be able to link to all of these features using the regular menu system. Our target market is older (70-plus), and just grasping social media will be hard enough for some of them. The added menu bar will definitely be confusing. So we’d like to be able to choose which links and features of BP to add to our menu system. For instance, they will use the messaging system (inbox), and their personal settings like the avatar, but we won’t introduce “groups”, “forums” or even the dashboard until later.
Since one has to be logged in to use the BP features, the links created in that bar are of course dynamic, based on the variable represented by who is logged in. So I suppose a link like this might work (my code is probably bad, but hopefully you understand what I’m going for):
`<a href=”activity/my-friends”>`
But we can’t get that to work as a menu item. Can anyone help? Is this even possible?
Hello,
Just getting started with WordPress and Buddypress. I installed the latest version of both. I’ve made some good changes through CSS and built out the site structure through the admin panel. One thing I’ve not been able to figure out is how to hide the “Register” link for logged in users. Once a user is logged in, it should disappear, but it doesn’t. How can I fix it? Thanks in advance.Ray
Hi, How to disable user to post blog post, as well as hide the ‘Dashboard” at the top of the nav bar. I installed buddypress in a single site and don’t want user to access to the Dashboard besides the admin. Even by setting the user’s role as member, they still can write a post and pass to admin to review. I don’t want this, I need the member totally stay out of the dashboard.
Is this achievable?