Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'hide login'

Viewing 25 results - 76 through 100 (of 125 total)
  • Author
    Search Results
  • danbpfr
    Participant

    Go 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 !

    #149205
    danbpfr
    Participant

    hi,

     

    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>

    `

    #148177
    voopress
    Participant

    That 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.

    #144403
    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/&#8217;, ‘2012-11-02 00:53:15’, ”, ”, 0, 0 )
    -1
    `

    #142995
    staceym
    Participant

    Here 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’);
    `

    #142277
    farandhigh
    Participant

    Thank you very much for your time,
    but it looks that it is unfortunatey not working … :-S
    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,
    Oli

    #135782
    b1gft
    Participant

    If 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?

    #132804
    mrjarbenne
    Participant

    buddydev.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.

    #132550
    Mary Jane
    Member

    I do that on jbsocial.com using the following plugins

    Member Access
    PC Hide Pages
    Peter’s Login Redirect
    Simple Access Control

    mysmallbizu
    Participant

    Is 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?

    #122422

    In reply to: Hide Login Form

    @mercime
    Participant

    Create 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 58

    #122648
    Fee
    Participant

    this 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() ) ) {
      ?>`
    lifechamp
    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

    #118172
    Whitefox
    Member

    OK 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.

    #115877

    In reply to: Hide Homepage

    Brajesh Singh
    Participant

    put 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.

    #113094

    In reply to: Hide Admin

    Magi182
    Participant

    For 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”);
    }
    `

    if 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

    #111964
    chrisreg1
    Member

    Hmm 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.

    #110773
    r-a-y
    Keymaster

    You 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/

    #108486

    Problem 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 from

    Not sure what happened… any ideas would be most welcome! Thank you :)

    #107233
    Sharan
    Member

    Pj 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.

    #106511
    Mape
    Participant

    Hi
    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: georgesmith

    I already have the plugin activated that user can login with their email address.

    Thanks for help!

    #104908

    In reply to: buddypress.org theme

    pcwriter
    Participant

    @bpUser

    It’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 CSS

    There’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

    Mouchoirs
    Member

    I 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.

    #96207
    Miko
    Participant

    I 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.

Viewing 25 results - 76 through 100 (of 125 total)
Skip to toolbar