Search Results for 'hide login'
-
AuthorSearch Results
-
January 18, 2013 at 12:00 am #150991
danbpfr
ParticipantGo to your admin > Pages and delete the register and empty the trash
Do the same if you have a Login page.
Then go to settings > buddypress.
– Tab Component and check the one you want.
– Tab Pages and create a page from there for each component.
Save.
Now BP is correctly configured.
Check also settings > permalinks and choose something other as default.
If you created some custom menus before installing BP, double check them to have the new pages.
Done !
December 29, 2012 at 3:43 pm #149205In reply to: hide date and permalink from page – Status Theme
danbpfr
Participanthi,
you have to search in your theme files for some of the tags listed here and then retrieve the div.post-header and his content:
`
<header class="post-header"> bla bla <div class="post-info"> December 26, 2012 <span>in </span><span class="post-utility alignright"></span><span class="post-action alignright"><a href="hxxp://eragenx.com/login/" title="Permalink to Log In" rel="bookmark">Permalink</a></span></div></header>
`
December 19, 2012 at 8:34 pm #148177In reply to: WPMS stand alone plus multisite?
voopress
ParticipantThat doesn’t seem to hide the main site’s wp-admin login. Each time a user who owns a blog clicks on the main site item at the top left hand side, they are sent to the admin of the top site.
>You do not have sufficient permissions to access this page.
November 2, 2012 at 12:56 am #144403In reply to: [resolved] Cannot post new activity
marcycapron
Participant@megainfo @djpaul i can’t post updates to groups *or* my profile.
this is what i get with debug on (mind you no errors in chrome dev tools)
`WordPress database error: [Unknown column ‘a.is_spam’ in ‘where clause’]
SELECT a.*, u.user_email, u.user_nicename, u.user_login, u.display_name FROM wp_bp_activity a LEFT JOIN wp_users u ON a.user_id = u.ID WHERE a.is_spam = 0 AND a.user_id IN ( 25 ) ORDER BY a.date_recorded DESC LIMIT 0, 20
WordPress database error: [Unknown column ‘a.is_spam’ in ‘where clause’]
SELECT count(a.id) FROM wp_bp_activity a USE INDEX (user_id) WHERE a.is_spam = 0 AND a.user_id IN ( 25 ) ORDER BY a.date_recorded DESC
WordPress database error: [Unknown column ‘is_spam’ in ‘field list’]
INSERT INTO wp_bp_activity ( user_id, component, type, action, content, primary_link, date_recorded, item_id, secondary_item_id, hide_sitewide, is_spam ) VALUES ( 25, ‘activity’, ‘activity_update’, ‘wec posted an update’, ‘ajax 2’, ‘http://tier1alumni.com/members/wec/’, ‘2012-11-02 00:53:15’, ”, ”, 0, 0 )
-1
`October 4, 2012 at 11:21 pm #142995In reply to: how to hide admin activity on Buddypress activity?
staceym
ParticipantHere is a solution that works in BuddyPress 1.6. This will prevent new activities from being added and will also prevent the user from showing as recently active. The first option is for admins, the second is for a specific username.
`
// Don’t record activity by the site admins or show them as recently active
function my_admin_stealth_mode(){
if ( is_site_admin() ) {
global $bp;
remove_action(‘wp_head’,’bp_core_record_activity’);
delete_user_meta($bp->loggedin_user->id, ‘last_activity’);
}
}
add_action(‘init’,’my_admin_stealth_mode’);// Don’t record activity for a user or show them as recently active
function my_user_stealth_mode(){
$current_user = wp_get_current_user();
if(is_user_logged_in()) {
if(‘YourUsername’ == $current_user->user_login) {
remove_action(‘wp_head’,’bp_core_record_activity’);
delete_user_meta($current_user->ID, ‘last_activity’);
}
}
}
add_action(‘init’,’my_user_stealth_mode’);
`September 22, 2012 at 4:16 pm #142277farandhigh
ParticipantThank you very much for your time,
but it looks that it is unfortunatey not working …
The site is still accessible without loggin, but the page of login is now unaccessible due to too many redirections as it says …
Don’t really know how to deal with that …
the link is todaki . com (with the space for robots), and the login page is todaki . com / login
maybe it can help ?
Thanks in advance,
OliJune 14, 2012 at 7:24 pm #135782In reply to: my buddy bar is not displaying on front end.
b1gft
ParticipantIf its not showing for logged out users but showing for you when you login, go to buddypress > settings> and make sure its clicked to no where it ask’s Hide admin bar for logged out users?
April 11, 2012 at 4:13 am #132804In reply to: hide public groups user is not a member of.
mrjarbenne
Participantbuddydev.com has two nice plugins that might do the brunt of the work for you. http://buddydev.com/plugins/bp-redirect-to-profile/ will force your users to their own profile upon login, and http://buddydev.com/plugins/facebook-like-user-activity-stream-for-buddypress/ will feed them content from the groups they are members of and people they are friends with.
April 6, 2012 at 4:52 pm #132550In reply to: Setting user profiles to ‘private’
Mary Jane
MemberI do that on jbsocial.com using the following plugins
Member Access
PC Hide Pages
Peter’s Login Redirect
Simple Access ControlFebruary 21, 2012 at 11:07 pm #130243mysmallbizu
ParticipantIs there a way to isolate the notifications from the other profile settings?
I’m using amember V4 to manage registration and subscriptions everything is working correctly except for 1 thing… The “settings” menu in the subscribers user profile goes to a blank white page “404” is the error I get.
for example…http://www.mysmallbizu.com/directory/subscribersusername/settings/
The other issue is that because amember is handling the login and registration/ username and password etc. I’d only like the user to be able to edit their notifications from this menu… Not their U and P: is there a way to do this?
October 26, 2011 at 4:27 pm #122422In reply to: Hide Login Form
@mercime
ParticipantCreate a child theme of bp-default theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
Copy over sidebar.php from bp-default theme into your child theme’s folder https://buddypress.trac.wordpress.org/browser/tags/1.5.1/bp-themes/bp-default/sidebar.php
Remove lines 29 to 58October 7, 2011 at 8:56 am #122648In reply to: Feature request: Hide certain members
Fee
Participantthis should work for excluding all super admins:
`
-
<?php while ( bp_members() ) : bp_the_member();
if( !in_array( bp_get_member_user_login(), get_super_admins() ) ) {
?>`September 5, 2011 at 9:32 am #119599lifechamp
Member.htaccess file:
-rw-r–r– 1 apache jhidev 236 Sep 5 00:28 .htaccess
(As you can see, it is owned by apache, as are all files in this wordpress installation).
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
August 10, 2011 at 11:08 pm #118172In reply to: Activation Code after New Member Registration
Whitefox
MemberOK so I’ve had the same problem and have built a very clumsy workaround.
PROBLEM: When the user click the email verification it sends them to verify.php and logs them in to WP but my Buddypress doesn’t know they are logged in and asks them to login. If the user just ignores the login request there is no problem but users don’t do that so they try to login and get the same “error..please provide a valid activation key” message because the account is already active.
MY RUBBISH ANSWER: The only thing that worked for me was to hide the BP admin bar and handle login links manually then change the text on the verify.php to a simple ‘congratulations, you’re in’ message. The downside of this is that I lost the use of my BP-Sliding-Login-Panel which I love. so I would be very grateful for a real solution to this.
July 6, 2011 at 9:05 pm #115877In reply to: Hide Homepage
Brajesh Singh
Participantput this in your bp-custom.php and change the redirect page url properly.
`
add_action(“template_redirect”,”my_redirect”);
function my_redirect(){if( !is_user_logged_in()&&is_front_page()){
wp_safe_redirect(get_bloginfo(‘wpurl’).”/about”);
exit(0);
}
}
`That should work.
May 26, 2011 at 7:02 am #113094In reply to: Hide Admin
Magi182
ParticipantFor those still looking for a solution to this, you can add the following code to the functions.php file of your active theme. The username gets replaced with the username you wish to hide. Alternatively, you could substitute the stuff in the parens of the conditional with a properly done current_user_can() statement to hide all the administrators.
`
global $current_user;
get_currentuserinfo();if( $current_user->user_login == ‘username’ ) {
remove_action(“wp_head”,”bp_core_record_activity”);
}
`May 10, 2011 at 9:01 pm #112005Prince Abiola Ogundipe
Participantif you simply want to hide Admin bar login and sign up, just add
remove_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 );to your functions.php and login and sign up will go away
May 10, 2011 at 5:54 am #111964In reply to: How Do I Remove Log Out From “My Account” Menu?
chrisreg1
MemberHmm unfortunately, that still did not work. Thanks for all your help thus far guys. Here is how my problem originated:
I recently transferred my site from the default ”/wordpress/” sub directory to my root directory. Everything works fine in BuddyPress except for the LOGOUT and LOGIN menu options from the BuddyPress menu bar (up at the top).
Upon looking at the URL that the logout and login tries to redirect to (in the tag), it still thinks it is in the ”/wordpress” subdirectory and the thus results in a Error 404 – Page Not Found problem.
I’ve search various ways to do this but people have either not have found a solution or seem to not have posted it. I originally thought I could just use the ‘Add All Nav Links to Admin Bar’ plugin (https://buddypress.org/community/groups/add-all-nav-links-to-bp-adminbar/) and hide the Login and Sign Up options but unfortunately the “Log Out” still remains since it is under the ‘My Account’.
Any help would be much appreciated, thanks.
April 23, 2011 at 4:35 am #110773In reply to: Hide default login section
r-a-y
KeymasterYou can override this by copying /bp-themes/bp-default/sidebar.php into your child theme and making the necessary edits there.
If you haven’t built a child theme, follow this guide:
https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/March 23, 2011 at 3:50 am #108486In reply to: [Resolved] can’t open group page
VirtualityStudio
MemberProblem is visible here: http://www.globalmeditationgroup[dot]com/groups/
Platform 1.1.3 theme
Wordpress 3.1
Buddypress… whatever the newest version is, I installed it through wordpress… so I can’t imagine it would be in the wrong place.I haven’t done anything with multisite.
Plugins:
oh boy… here we go
add new default avatar
askimet
all in one seo pack
autochimp
ban hammer
bbpress integration
bp group hierarchy
bp xtra signup
buddypress
buddypress humanity
comments cleaner
dropdown menu widget
feedburner feedsmith
forum post notification
google analytics for wordpress
google xml sitemaps with multisite support
gravatar signup encouragement
login logger
use google libraries
user spam remover
visitor maps and who’s online
wordpress importer
wp hide dashboard
wp mail fromNot sure what happened… any ideas would be most welcome! Thank you
March 8, 2011 at 9:25 pm #107233In reply to: Want O Hide Widgets From Logout Users.
Sharan
MemberPj i do not need this i need to hide widgets but i want to keep only login buttons here.
also i want to know how to hide comments from main page seperately. so that sometimes i can give functionality to the users to chat on home page without login.
February 28, 2011 at 2:43 pm #106511In reply to: Autogenerate or remove username
Mape
ParticipantHi
I know these posts are really old, but does this still work? I’m not quite sure how I really have to do it?
So can maybe someone help me with it please?
I want to hide the username field, and would like to auto-generate the username based on the normal “Name” field in BuddyPress.
So that WP and BP automatically take the first and last name out of the “Name” field. e.g. Name field input: George Smith username: georgesmithI already have the plugin activated that user can login with their email address.
Thanks for help!
February 8, 2011 at 10:56 am #104908In reply to: buddypress.org theme
pcwriter
ParticipantIt’s a custom theme designed specifically for bp.org. You can find several good themes here: https://buddypress.org/extend/themes/
Or Google ‘buddypress themes’ for more.You might also like my BuddyLite theme. It comes with the following basic customization options:
Maximum & Minimum Theme Width
Header Height
Theme Background Color, Image, Image Repeat & Image Behavior
Show Home Page Title and Content
Community Dropdown Menu Label
Integrate BP-Adminbar with Main Menu
Select ‘Global Search’ or Standard Buddypress Search
Search Bar in Header or in Sidebar
Sidebar Left, Right or Left and Right
Main & Secondary Sidebar Width
Hide Sidebar Login Form
Custom CSSThere’s also a premium version – BuddyBuilder – that comes with a whole heck of a lot more options so you can actually design your own theme by simply clicking your mouse. See them both at http://BuddyLite.com
January 3, 2011 at 2:42 am #101728Mouchoirs
MemberI like the widget you recommended above. I’m wondering if you know anything about pagelines plaform. I was thinking, if it offers full buddypress functionality, I could utilize the registration widget along with the “hide primary bar” feature in pagelines. This would make the widget available on only the pages I desire.
If I did this, do you know if there’s a way I can make every page of buddypress invisible to non-logged-in users? I could then simply have the registration and log in page visible to non-users. I’m currently using a privacy widget to hide all pages except login from non-logged-in users. However, I don’t see any way to select specific buddypress pages to choose to make private.
Thanks again so much for your time.
October 23, 2010 at 1:53 pm #96207In reply to: Setting redirect page for non-logged in users
Miko
ParticipantI don’t want a landing page for visitors, I want normal visitors to see all of the usual pages & posts on the public part of the site. This is happening fine. What I want is for them to arrive on a nice page if they search for something that is on a hidden private part of the site. I am using Private Buddypress to hide members area (private profiles, forums etc) from the main marketing pages of the site ( WP pages and posts). The Private Buddypress plugin annoyingly redirects to the standard WP login screen (as you can see in the code from that plugin posted in my original Q). I do not like this, because it gives no explanantion to the user why they searched for something and arrived at a login screen. This is why I want to redirect to my custom 404 page, which I have modified to say that the item they are looking for is not found, or it is only visible to logged in members. What I want to know is how EXACTLY to modify the above code to get the redirect to point to the 404 page.
The login screen is not helpful, and in fact it’s offputting/confusing because you have to be a member of our photo club to be allowed into the community – so we don’t accept public registrations. Showing a login screen makes it seem like people should be able to register somehow, when they can’t.
-
AuthorSearch Results