Search Results for 'hide login'
-
AuthorSearch Results
-
September 25, 2010 at 11:45 pm #93420
jdawn
MemberHi Paul,
I just tried this fix, but it didn’t work: http://premium.wpmudev.org/forums/topic/ie8-compatibility-mode.
Below is a list of my active plugins. But I’m not sure if it’s a plugin issue because the cropping works in Firefox. Is it an IE8 compatibilty issue? If so, how can I get around it?
Here are my active plugins:
* Advanced Permalinks
* AJAX Login Widget++
* BP-NotificationWidget
* BP Disable Activation
* BP Hide Widgets
* BP Member Filter
* BuddyPress
* BuddyPress Album+
* Buddypress Widget Pack
* Capability Manager
* Dean’s Permalinks Migration
* Enhanced BuddyPress Widgets
* Fast Secure Contact Form
* Fluency Admin
* IE7 Compatibility
* Invite Anyone
* Media Library Gallery
* My Comments Manager
* NextGEN Gallery
* NextGEN Gallery Sidebar Widget
* Nicer permalinks for Vietnamese
* oEmbed for BuddyPress
* ourSTATS Widget
* Peter’s Login Redirect
* Plugin Central
* SI CAPTCHA Anti-Spam
* Simple Trackback Validation
* TDLC Birthdays
* Theme Switcher Reloaded
* Top 10
* Transposh Translation Filter
* User Permissions
* Visitor Maps and Who’s Online
* Welcome Pack
* WordPress Admin Bar
* WordPress Database BackupThanks for your help!
JdawnSeptember 6, 2010 at 4:33 pm #91668In reply to: Admin bar disappeared
govpatel
Participantwhen you installed buddypress sliding login panel you had to put this code define( ‘BP_DISABLE_ADMIN_BAR’, true );
in wp-config.php to hide the buddypress admin bar just take it out and deactivate buddypress sliding login panel.September 3, 2010 at 3:05 pm #91429In reply to: Admin bar during Login/Logout
sicksight
ParticipantIn my installation, the Adminbar isn´t displayed on the login page. This is a function of WordPress … You could hide it for example with CSS.
August 27, 2010 at 2:36 am #90525In reply to: adding links to header navigation
pcwriter
Participant.You could also try my plugin (he says with shameless self-promoting grin).
See this post for the latest beta version: https://buddypress.org/community/groups/add-all-nav-links-to-bp-adminbar/forum/topic/updated-the-beta/
Here are the user configuration options available in the admin panel under “Settings” > “BP-WP-Navbar”
– Hide or display the main theme navigation
– Hide or display the site name in your new adminbar
– Hide or display the Login and Signup links in the adminbar
– Hide or display the “Visit Random” menu
– Select whether to display top-level WordPress pages horizontally or in a dropdown menu
– Define the label for the dropdown in WordPress 2.x
– If you’re running WP3.x, the plugin will fetch whatever custom menu labels you assign and display them in the admin bar along with all child pages in dropdowns
– Define the label for the Buddypress directory dropdown (default = “Community”)
– Define the font, font-weight and font-style for all menu items
– Define ALL colors: navbar background, main and sub menu item backgrounds, border, text and hover colors too
– Set the overall width of the navbar and of sub-menus
– Set the height of all menu items
– Adjust margins where required
– Reposition your fancy new custom navbar anywhere you like, relative to your theme so it scrolls with your pagesIf you add categories to your custom menus in WP3.x, the plugin will pick them up and display them in whichever menus they are assigned to. Give it a whirl.
August 12, 2010 at 12:02 am #88795In reply to: Adding menu items to the admin bar
pcwriter
Participant@hnla Well now, great progress!
I remember writing at some point that it’s often the most obvious that escapes me… Turns out I hadn’t “actually” selected any files to upload to subversion… I was just going through the motions and clicking buttons (doh!). The first version of the plugin is up and I just updated it with a whole bunch of cool new stuff. Code here: http://pastebin.com/Qquwe9pH
Thanks to your examples, I created 3 new custom configuration options: in addition to hide/show the main nav, users can now choose to hide/show the site name/logo, the Login/Signup links, and the Visit Random dropdown. I’ve also completely revamped the readme with a detailed FAQ, and added a fully commented stylesheet with the rules I use for my site to help get folks started on customizing their new admin/navbar.
Thanks a whole bunch for your invaluable help and instruction on this project! I can now say I’ve popped my plugin cherry!

Now we just have to wait for subversion to update………
August 4, 2010 at 1:48 pm #87968In reply to: How to add “Signup” beside “Login” on Admin bar?
imjscn
ParticipantIn general settings, “Hide admin bar for logged out users? ” , I select “No” , and when I log out, I can see the Admin Bar, but there’s no “SignUp”
???July 22, 2010 at 6:57 am #86595In reply to: Hide/Remove dashboard from normal members
B.
ParticipantLooks like I spoke to soon. Peters Login Redirect Plugin (https://wordpress.org/extend/plugins/peters-login-redirect/) takes advantage of the filter added in 2.6.2. You can read an article about the plugin here http://www.theblog.ca/wplogin-redirect. If anyone else has other ideas let me know. For now I’m just going to send all subscribers to edit profile page upon login from the wp-admin section.
July 14, 2010 at 4:16 pm #85607In reply to: Members only site
John Monkhouse
ParticipantHow do you hide in the login screen that it says we are in maintenance mode?
June 4, 2010 at 4:20 pm #80665In reply to: Hide Admin
Mark
ParticipantSocialpreneur has a nice snippet here that makes it easy to hide the admin from the members list assuming you know the admin’s login name.
Place this in your bp-custom.php:
function my_bp_member_user_login() {
echo my_bp_get_member_user_login();
}
function my_bp_get_member_user_login() {
global $members_template;
return apply_filters( 'my_bp_get_member_user_login', $members_template->member->user_login );
}
Then in your members-loop.php file, place this just below the while statement (wrapped in php tags!):
if ( my_bp_get_member_user_login() == 'admin' ) continue ;(Supposing your admin’s login is ‘admin’.)
May 23, 2010 at 3:18 pm #79336peterverkooijen
Participant@thelandman, in my solution I use javascript to generate the username from the weird semi-optional xprofile fullname field, hide the username field on the form, use the email login plugin so members don’t need the username to log in, add more custom code to synchronize the fullname and the fullname-derived username to all the various similar fields in the database, etc. It’s messy, but somewhat workable.
The point is that it should not be that hard. Using full names, Firstname Lastname, should be part of the core. Seeing that none of this is fixed in 1.2+ and probably will never be fixed, I have no plans to upgrade to newer versions of Buddypress and will continue developing my version as a fork, more suited for professional and business use. If anyone is interested in working with me on that, please contact me directly.
May 10, 2010 at 7:47 pm #77547In reply to: Gigya Widget… Help!
Tristan
ParticipantBlah, I meant to ask how can I hide the Gigya widget upon login (or hide BP login entirely)?
March 16, 2010 at 10:32 am #68569In reply to: How do I remove log in ?
beeza
ParticipantHi mercime, I did try what you suggested, it did hide the login but it broke up the theme! So not sure what else to try!
March 16, 2010 at 7:56 am #68553In reply to: How do I remove log in ?
@mercime
ParticipantOr, just keep the wp-adminbar and add this to your style.css to hide the login link
ul.main-nav li.bp-login { display: none; }Or, go to Dashboard, BuddyPress > General Settings and check Yes for “Hide admin bar for logged out users?
“
March 16, 2010 at 3:08 am #68536In reply to: How do I remove log in ?
beeza
ParticipantThe above works a treat the fix did indeed remove the login from the sidebar, and I now have login with ajax running. I have just realised however there is another slight problem I have run into! I have the Buddypress admin bar hidden with the aid of a plugin. But doing this hides the My Account, My mesages, Friends, Profiles, Settings, and Notifications etc section!
Just wondering if it be easier to add a plugin to show notifications etc in side panel, except log in! Or just remove the log in section from the admin bar ?
February 22, 2010 at 8:49 pm #64884David Lewis
ParticipantYup… it’s not a widget. Two options which would involved making a child theme. Don’t worry… it’s really simple: https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
- Make a child theme with a custom sidebar.php file and comment out or delete the login block of code.
- Make a child theme and add this line to your “style.css” file
#login-text, sidebar-login-form {display: none;}I suppose you could also try adding the code below to a “custom.php” file and putting it in your plugins directory (no child theme required)… but now I’m just getting silly. LOL (I haven’t tested this BTW).
<?php
add_action('wp_head', 'hide_login');
function hide_login() {
echo <<<CSS
<style type='text/css'>
#login-text, sidebar-login-form {display: none;}
</style>
CSS;
}
?>or even this! (very silly)
<?php
add_action('bp_before_sidebar_login_form', 'open_login_comment');
function open_login_comment() { echo '<!--' }
add_action('bp_after_sidebar_login_form', 'close_login_comment');
function close_login_comment() { echo '-->' }
?>So how to you intend for people to login? Just via the regular WordPress login?
February 2, 2010 at 12:09 pm #62222In reply to: How to customize signup form?
peterverkooijen
Participant@osasko, do you use the email login plugin? You can’t get rid of the username entirely, because WordPress is built around it, but you can autogenerate a username and hide the input field on register.php by adding type=”hidden”. It’s an ugly hack…
January 15, 2010 at 2:16 pm #60840peterverkooijen
Participant… its for LOGIN not Registering.
logging in yeah, i can use it but first I need users with an email as username

That’s just a matter of restructuring the registration form (version 1.0 now, currently upgrading to 1.1.3). You can autogenerate the username from the fullname using this javascript trick and then hide the username field.
Hacking core files to actually put email addresses in the username fields in the database is a recipe for disaster. Why do you want to do that? What am I missing?
December 24, 2009 at 12:56 pm #594745649078
InactivePlease this is my first experience with WordPress and buddypress. I have installed wordpress Mu/buddypress successfully, I want to have a site where the main page will be used as an introduction to my social networking site, as well as the platform for login, and the second page to be the main social networking page… i have installed some customed made theme for the purpose of the Social.n/w.. but the whole thing is confusing me. PLEASE… i will be grateful if any one can give me step by step hint on how to go about this…….
….placing one theme as main page in subdomain and the other in main domain is…? Please Help…
December 3, 2009 at 11:50 pm #57975In reply to: Hiding a member
invertedsphere
ParticipantI have a solution:
You need to edit the buddypress members loop file located probably at /wp-content/themes/bp-themes/bp-sn-parent/directories/members/members-loop.php
Find the members loop and make it look something like this:
<?php while ( bp_site_members() ) : bp_the_site_member(); ?>
<?php // put member name into variable
ob_start();
bp_the_site_member_name();
$excluded_user = ob_get_contents();
ob_end_clean();
?>
<?php if($excluded_user != ‘name of user goes here’) { ?>
// ORIGINAL CONTENTS OF LOOP GO HERE
<?php } // end if $excluded_user !=… ?>
<?php endwhile; ?>
Note that this will compare the name that the user entered in their profile, not to be confused with the login name. It would probably be best to give the user a complex name that nobody else would likely use so that you don’t accidentally hide unsuspecting users. Maybe you can figure out how to get the actual login name though.
Good luck to all
August 31, 2009 at 5:36 pm #51822In reply to: Replace WP profile edit with BP profile edit
peterverkooijen
ParticipantYes, I already use wp-hide-dashboard. It’s a partial solution.
Users still get the pushy wp-login every now and then, which is a problem because it also has a link to an ancient register/signup form that clashes with Buddypress.
wp-admin/profile.php also is not whacked by wp-hide-dashboard.
August 17, 2009 at 4:27 am #51135In reply to: How does this site get this cool ajax login field?
peterverkooijen
ParticipantProbably a jQuery script, perhaps via a plugin, not necessarily. I know there are several WordPress Ajax login plugins.
I have a similar toggle hide script in my test site, but without the cool jQuery animation effect. They did a very nice job. I should look into that site for “ideas”…
August 10, 2009 at 9:01 pm #50862webatease
ParticipantGigya Socialize worked for my install… I’ve only tried myspace, facebook and twitter – but it authenticated me correctly and I was able to login to BuddyPress. Only issue I’m having is that each time you login with one of your social usernames, it creates a new username in WPMU/BuddyPress, as opposed to all tying to your one WPMU/BuddyPress account. This created havoc for me, since I want to use groups, and other permissions.
At this point, I’m leaning towards limiting to just the Facebook login. Does anyone know if there is a way to hide/not allow login using the actual wordpress login, and ONLY use the login for Gigya Socialize? I/e allow users to go to wp-admin, but not give them the option to login using the user/pass – only letting them see the Gigya Socialize plugin.
July 8, 2009 at 8:02 pm #48837In reply to: default to ‘just a username’
r-a-y
KeymasterHey Peter,
It’s safe, but when upgrading to the newest BP version, you’ll have to remember to make this change again.
Either that, or until some option in the admin area is made.
I’m using BeLogical’s fix plus a CSS hack to hide the “Create a Blog” field right now.
—
There is no voting system, Peter. Although you can leave a message on the trac:
https://trac.buddypress.org/ticket/835
You can login with your existing BP username and password there.
June 22, 2009 at 10:23 am #47890In reply to: “Send To” Error in “Compose Message”
3237780
InactiveI have the same thing
‘(To hide the error message, you can comment, in “bp-messages-ajax.php”, the core of “messages_ajax_autocomplete_results” like this :
function messages_ajax_autocomplete_results() {
/*global $bp;
// Get the friend ids based on the search terms
$friends = apply_filters( ‘bp_friends_autocomplete_list’, friends_search_friends( $_GET[‘q’], $bp->loggedin_user->id, $_GET[‘limit’], 1 ), $_GET[‘q’], $_GET[‘limit’] );
if ( $friends[‘friends’] ) {
foreach ( $friends[‘friends’] as $user_id ) {
$ud = get_userdata($user_id);
$username = $ud->user_login;
echo bp_core_get_avatar( $user_id, 1, 15, 15 ) . ‘ ‘ . bp_core_get_user_displayname( $user_id ) . ‘ (‘ . $username . ‘)
‘;
}
}*/
}
If anyone know how show users list I am interested…
I tried with “friends_search_users” but I got the same error message “Call undefined function”.
Sorry for my poor english :p
May 19, 2009 at 8:45 pm #45672In reply to: Author Avatars list plugin now works with BuddyPress
ndrwld
ParticipantI use it as substitute for default BP members widget. Mainly because without any code changes:
1. I can choose avatars size in px
2. Simple link avatars to blogs, their websites, member pages
3. There is possibility to chooce Sorting order (by posts number, registration date, login name, name display, user id…)
4. You can hide users by inserting their id
5. Choose to show users from selected blogs
6. Group by blogs
7. there are more features
I think it’s quite useful for those who don’t have much experience with loop and need simple customization widget.
Thanks bforchhammer to here is Changeset 118704 with possibility link avatars to bp member page.
-
AuthorSearch Results