Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 401 through 425 (of 3,443 total)
  • Author
    Search Results
  • #302631
    shanebp
    Moderator

    LH BuddyPress doesn’t work normally

    What is LH BuddyPress ?
    Do you mean LH Private BuddyPress ?
    If so, you should use the support forum for that plugin.

    #302617
    farmrchrys2013
    Participant

    I have BuddyPress 4.1.0 and bbPress 2.5.14 installed on a WordPress 5.0.3

    I already tried resetting the permalinks. I have not tried disabling and re-enabling all other plugins. I’m hoping it’s a simple fix.

    I am having URL Rewrite issues.
    This URL works and gets me to a page which lists all groups/my groups.
    //example.com/groups/

    For testing, I log in as a user having the wp ‘subscriber’ role who is a member of one of the private groups listed.

    I click on the group to which the user is a member and it takes me here:
    //example.com/groups/regenerative-farming-discussion/forum/

    This is good. This is where I want the user to be. But on this page, the user has the ability to see how many other members are in this group and clicking the ‘members’ button should take the user to a page that lists only the members of that group. When I hover over the members button, the URL that displays is
    //example.com/groups/regenerative-farming-discussion/members/

    but when I click on the members button, the URL I am taken to is
    //example.com/members/

    which is a page that lists ALL the members. NOT what I want.

    Similarly, if I’m logged in as a user and I go to the Members page (//example.com/members/), and I click on a member’s name, I’m taken to the member’s page:
    //example.com/members/member_name/

    I see that this member belongs to 2 groups. I want to know which ones, so I should click on the tab that says “Groups (2)” to see which two groups the person belongs to. When I hover over that tab, the URL displayed is
    //example.com/members/member_name/groups/

    but when I click on it I am taken here instead
    //example.com/groups/

    which lists all the groups. NOT what I want.

    What can I do to fix the errant rewriting of these URLs?

    #302534
    stigma8113
    Participant

    Sorry, I don’t speak English, I use a translator.

    I do not have private messages
    There is just empty space

    Removed all plugins, did not help
    Tried on different topics, did not help
    On different sites, also does not work
    On different browsers, does not work
    Reinstalled WordPress and BuddyPress did not help
    etc.

    How to fix it?
    Screenshot
    Site https://rybalka-v-mordovii.ru/

    chuchudolls
    Participant

    WP v. 5.0.3
    Directory
    root
    I did not upgrade from a previous version of WordPress.
    WordPress was functioning properly before BuddyPress install.
    BuddyPress v 4.1.0
    No upgrade.
    Other plug-ins: bbPress, bbPress WP Tweaks, Breadcrumb NavXT, BuddyPress, Column Shortcodes, Contact Form 7, Content Aware Sidebars, Mailchimp for WooCommerce (currently not set up), MetaSlider, N-Media WooCommerce PPOM, Shindiri Woo Shop Slider Lite, Widget Options, WooCommerce (currently not set up), WooCommerce Produce Carousel Slider, WooCommerce Services (currently not set up). All are up to date.
    Wordpress theme is Vogue.
    I’ve not modified the core files in any way that I’m aware of.
    No custom functions that I’m aware of.
    I do not know how to do .php coding.
    I do not have any errors that I am aware of and could not run the check from the tutorial as it didn’t work. Again, do not know .php code.
    Current website has been removed from online and is on a private server/localhost. This will change soon as the new site is finished.
    Windows.
    No BuddyPress theme chosen so maybe default theme selected?
    No idea if I overloaded any buddypress template files.

    Posting above per the “When asking for support” sticky.

    I have two problems. The first is that I don’t have a way for users to create groups using the BuddyPress groups system. I can only create groups manually by selecting “Groups” > “Add New” in the dashboard. I do not wish to cater to 100’s of requests for groups, and would like users to have freedom of creation. “Anyone can register” is selected. “User Groups” is selected.

    As of right now, my site has a “Social” menu option with sub-menu of all the BuddyPress items. If I click on “Groups” in the sub-menu, I DO NOT get an option to create groups. However, if I click on the main menu “Social,” and look at the right side where my “Groups” widget is, I can click on groups, and get a new page that has a “Create New Group” option that allows anyone to create.

    Ok, so why not just add the widget to all the BuddyPress pages? I did. They won’t load. The only way people can add groups is if they go through this widget. Which leads me to my second problem; I am not able to add that widget anywhere else on the website. It will not load on any other of the BuddyPress pages/sub-menu options. In fact, nothing will load.

    This was the result of adding “Content Aware Sidebar” plug-in, because I was not able to get website widgets OFF BuddyPress pages even when selected to be off those specific pages. Now, I have removed my main-site widgets from BuddyPress pages, but can’t get BuddyPress widgets on BuddyPress pages. Boy, I hope that was clear.

    If I remove “Content Aware Sidebar” (or deactivate it), everything goes back to the way it was. Main website widgets that I don’t want on BuddyPress pages will load on BuddyPress pages, but so will the BuddyPress widgets.

    How do I get my BuddyPress widgets to load AND prevent my other widgets from loading on BuddyPress-only pages? Or can I manually insert a “Create Group” link inside the “Groups” page, preferably next to “Invitations” and “Memberships?”

    I believe the problem lies with both the “Content Aware Sidebar” plugin and “Widget Options,” which is the one I used to be able to manually select pages. It worked perfectly until BuddyPress was installed. Now, I can’t get choices over BuddyPress-only widgets, but I can get widgets to load at will anywhere else on the site.

    #302334
    Oxibug
    Participant

    Thanks Pal, Working GREAT

    I was using bp_include like suggested in documentation but it seems it’s related to files only.

    Final Code

    class MY_PLUGIN_BuddyPress {
    
        private static $_instance = null;
        
        /*
         * Silent Constructor
         *
         * */
        public function __construct() { }
    
        public static function instance() {
    
            if( is_null( self::$_instance ) ) {
    
                self::$_instance = new self;
    
                self::$_instance->init();
    
            }
    
            return self::$_instance;
    
        }
    
        private function init() {
                
            add_action( 'bp_load', array( &$this, '_buddypress_action' ), 10 );
            
        }
    
        public function _buddypress_action() {
                
            $all_groups = BP_Groups_Group::get( array(
                
                'type'               => null,
                'orderby'            => 'date_created',
                'order'              => 'DESC',
                'per_page'           => null,
                'page'               => null,
                'user_id'            => 0,
                'slug'               => array(),
                'search_terms'       => false,
                'search_columns'     => array(),
                'group_type'         => '',
                'group_type__in'     => '',
                'group_type__not_in' => '',
                'meta_query'         => false,
                'include'            => false,
                'parent_id'          => null,
                'update_meta_cache'  => true,
                'update_admin_cache' => false,
                'exclude'            => false,
                'show_hidden'        => false,
                'status'             => array(),
                'fields'             => 'all',
                
            ) );
    
        }
    
    }
    shanebp
    Moderator

    – Responsive on all devices
    Yes.

    – Users to be able to pay for messaging and/or subscription
    No, requires a membership plugin.

    – User should be able to register, to have public and private profile also public and private photos.
    Register, yes. Profiles are public unless you add custom code. Photos gallery requires custom code or there may be a third-party plugin.

    – Users to be able to edit and add custom fields on their profile page
    Yes.

    – Admin should also be able to edit those fields/profile pages
    Yes.

    – Users to be able to filter search results, based on those fields
    Yes, by using the BP Profile Search plugin

    – IP Geo detection function? Showing users in your area?
    No. Requires custom coding or perhaps a third-party plugin.

    – Multilanguage support.
    Yes.

    – Are gifts or badges also available/active, which are to be given on a subscription or user rank basis?
    No, maybe a third-party plugin.

    – Any performance issues? Browsing experience should be smooth.
    Depends on your hosting resources and the number of active users.

    #302207
    Varun Dubey
    Participant

    @jamesmct I do not think BuddyPress have any current option to manage all pending membership for all private group at single location.

    #302150
    Venutius
    Moderator

    I’ve just suggest it, above. To make the default group status private as you asked, you can add that to your bp-custom.php and it should do the trick for you.

    #302135
    Venutius
    Moderator

    I don’t think overloading that file is the way to go for the default status change, you can set the default new group status using the bp_get_new_group_status filter, so you could do something like this:

    add_filter( 'bp_get_new_group_status', 'venutius_new_group_status_change' );
    
    function venutius_new_group_status_change( $status ) {
        return 'private';
    }
    #302065
    jolom
    Participant

    Thanks @Venutius, I was watching the plugin’s code and it is very simple, also saw that errors but are easy to fix.

    Maybe changing text the way it does in this part?

    52	// change the name of the group if it's an announce group
    53	function ag_filter_group_type( $type ) {
    54	        if ( ag_get_announce_group() == 'announce' ) {
    55	                if ($type == 'Public Group')
    56	                        $type = __('Announce Group', 'announce_group' );
    57	                elseif ($type == 'Private Group')
    58	                        $type = __('Private Announce Group', 'announce_group' );
    59	                elseif ($type == 'Hidden Group')
    60	                        $type = __('Hidden Announce Group', 'announce_group' );
    61	        }
    62	        return $type;
    63	}
    64	add_filter( 'bp_get_group_type', 'ag_filter_group_type', 1 );

    But I need to change on every portion that renders “Group” right?

    Thank you.

    #282863

    In reply to: Buddypress Tournaments

    Arize Nnonyelu
    Participant

    Could you be more elaborate? Tournaments on what?
    Did you have any Tournaments plugin in mind yet?
    With buddypress users are linked it depends on private or public profile.

    shanebp
    Moderator

    If you mean the Private Message button at the top of a profile page, then place this code in bp-custom.php or in your theme > functions.php

    function lindsay_profile_button() {
    ?>
    	<div class="generic-button"><a href="https://google.com" >go to google</a></div>
    <?php
    }
    add_action( 'bp_member_header_actions', 'lindsay_profile_button', 25 );

    If ‘Private Messaging’ means something else, then you need to talk to the creators of that code because it does not come from BuddyPress.

    bbtrouble
    Participant

    Hello, we’re having issues with BuddyPress private messaging on our site https://www.lightstalking.com/

    We’re using Version 4.1.0 of BuddyPress running on WP 4.9.8

    This issues happens only with an admin account – it’s impossible to send new private messages from an admin account to other users of forum.

    When we try to do that, we get an error message (I attached a screenshot of it) – https://www.screencast.com/t/XoU5ZLRaAtf

    Let us know if there’s anything to do about this.

    Best regards,
    LightStalking team

    #282441
    diegomiguel05
    Participant

    Hello shanebp, thank you very much for your response:

    We have realized that users could not access the home page of other private groups due to the inteference of another active plugin. Deactivating it, users already have access to the home page of others private groups, but still can not see the list of members of those groups. I’ve been trying to use your code (in function.php and writing it as html text), but it does not work, possibly I’m not writing it in the right place. Do you know how to solve this problem, please??

    Thank you very much for your help.

    #282432
    matwin23
    Participant

    I just switched theme in admin to legacy and private message is now working. Must be a Nouveau bug.

    #282393
    Carsten Lund
    Participant

    This is a five year old topic, but stil unsolved.
    Help is appreciated, can anyone in here figure out why the code is not working?

    How to make subject field in private messages isn’t required?

    I did not test this but go into the theme folder members/single/messages/compose.php
    find this:

    <input type=”text” name=”subject” id=”subject” value=”<?php bp_messages_subject_value(); ?>” />
    change it to this:
    <input type=”hidden” name=”subject” id=”subject” value=”private message” />

    #282311
    frosttho
    Participant

    Hey All!

    It’s me again. I upgraded from BuddyPress 3.2.0 to 4.0.0. After the Upgrade the “Add Members” Form on the Group Page in the Backend was empty. I only got the title “Add new member”.

    Is there any workaround?

    Thanks in Advance
    frosttho

    WordPress Version 4.9.8
    BuddyPress Version 4.0.0
    BuddyPress Plugin: LH Private BuddyPress 1.0.8
    Running on Apache / Ubuntu 18.04

    #282244
    shanebp
    Moderator

    Did you try to narrow down the issue ?

    For example:

    Did you try deactivating LH Private BuddyPress ?
    If the menus return, then you should follow up with the creators of the LH Private BuddyPress plugin.

    Did you try switching from Nouveau to the other template pack – BuddyPress Legacy ?

    #282205
    lookingahead
    Participant

    OH guess what…? 😀 Figured it out.

    I have a solution that so, sooo…..SSOOOOOOO many other people have been looking for, and I’m elated to say I’ve found it.

    Been cruising Stack Exchange, various WordPress plugin support threads, installing plugin after plugin, reading blogposts made by developers, comments made by disillusioned masses….I mean, it’s endless.

    But THANK GOD I found a solution!

    So it turns out that the code that BuddyDev mentioned was not to blame for the 500 error I mentioned in my intro. It was actually due to one of the two plugins that is recommended in BuddyDev’s tutorial (and they are now fixing that bug). 🙂

    I figured this out as I tried to reproduce the error while activating plugins in a different sequence.

    The first time I did this, I’d had BuddyPress disabled when I’d installed both plugins. I’d also already put the code mentioned in their tutorial into my bp-custom file. I then activated BuddyPress, and the site failed.

    This time, I had BuddyPress already activated, then installed and activated one of the two plugins BuddyDev recommended to use in the tutorial…and all was well. THEN…I installed the second plugin. And upon clicking ‘Activate’ the site failed again. NOTE: on the second attempt to reproduce the 500 error, I hadn’t put the code from the tutorial into my bp-custom file….

    And according to BuddyDev, even before I tried to reproduce the error, the bp-custom code I was using was sound.

    So when the site failed upon my attempt to reproduce the error, I knew: that plugin was to blame.

    Then, I found out more about that plugin…it is designed to be used for users to have extra fields to fill out upon signup, fields that would show in their Member Profile. And I have Member Profiles disabled. Wa-la!

    I then asked BuddyDev if I needed the plugin that failed…and THANKFULLY they said, ‘no — not needed for what you want to do.’

    WHEW!! 😀

    So, a summary:
    – Use custom code in bp-custom (pasted below)
    – Use one plugin in particular from BuddyDev
    – Do not use another plugin recommended by BuddyDev

    The plugin to DEFINITELY use, that was listed in their tutorial: ‘BuddyPress Member Type Generator’…that affects the ability for Webmasters to set custom member types AND an avatar specific to every custom type created! 😀

    The other plugin that was recommended in that tutorial, that is NOT needed to change user avatars for custom member types…not ever, as it has nothing to do with avatars — it was merely recommended in their tutorial so people could manage user profiles: ‘BP XProfile Member Type Field’

    SO. If you want to have a different default avatar for different member types, then you will need to use the ‘BuddyPress Member Type Generator’ plugin. Not the other one.

    Steps to take:
    1.] Download the ‘BuddyPress Member Type Generator’ plugin from BudyDev

    2.] Read their tutorial (I’ll paste a link below in follow-up comments to this comment)…do everything EXCEPT install the ‘BP XProfile Member Type Field’ plugin — it’s not needed for assigning an avatar via custom member type; it just is recommended in their tutorial to use so you can manage user fields 🙂

    3.] Use the code I’ll also paste below (in the follow-up comments) — modify it to your site’s name but insert your site name where I typed ‘sitenameprivate’…etc.

    4.] For creating more avatars with custom member types in the future, you’ll always have to update that same code in the bp-custom file…via FTP/SFTP; tbh that process is easy as pie once you realize how to do it

    5.] For making your life easier with switching out avatar images for member types without having to re-do the bp-custom file: just save over the image in your media library that is used for that particular member type…so the path is the same and your code won’t need to be changed

    Simple, yet difficult to find.

    Thank GOD FOR BUDDYDEV!!! <3

    #281894
    david22c
    Participant

    Hi,
    Would someone be kind enough to help me with changing a buddypress error message? (wordpress 4.9.8, buddypress 3.1.0)

    I am restricting private messaging to user’s friends/connections. Currently, the error message returned when sending a private message to someone not in your network is “Message not sent. Please try again.” which doesn’t make sense. I would like it to say something like, “Sorry, you can only send a private message to connections in your network.” How might I change this error message?

    I have been using the following code in child functions to restrict private messaging:

    // if not site admin, restrict PMs to friends
    function pp_check_message_recipients( $message_info ) {
    
    //  site admins are not restricted
    if ( is_super_admin() )
    return $message_info;
    
    $recipients = $message_info->recipients;
    
    $friend_ids = friends_get_friend_user_ids( bp_displayed_user_id() ); 
    
    $nf = 0; 
    
    foreach ( $recipients as $key => $recipient ) {
    
    if ( ! in_array( $recipient->user_id, $friend_ids ) ) 
    $nf++;
    
    }
    
    // if any recipients are not friends, remove everyone from the recipient's list
    if (  $nf > 0 ) 
    unset( $message_info->recipients );
    
    return $message_info;
    }
    add_action( 'messages_message_before_save', 'pp_check_message_recipients' );
    #281389
    Brajesh Singh
    Participant

    Thank you.

    My first suggestion will be to try disabling the LH Private BuddyPress, if that does not solve it you should try deactivating Youzer and BP Force Profile photo(assuming bp-custom.php) and child theme’s functions.php does not have any redirection.

    Please give it a try and let me know if any of the above resolves the issue?

    #281388
    Arize Nnonyelu
    Participant

    is there anything special about the site? Like any redirection setup or content restriction?

    LH Private BuddyPress? Restricts non logged in users from accessing other users profile, activity etc

    #281387
    Arize Nnonyelu
    Participant

    …are you using any content restriction/redirection plugin?

    wp super cache
    youzer
    title remover
    short codes for buddypress
    super pwa
    lh private buddypress
    gutenberg
    font awesome 4 menus
    child theme configurator
    buddypress global search
    buddypress activity autoloader
    buddypress
    bp force profile photo

    shanebp
    Moderator

    It’s okay to place a call for devs here.
    It’s nice to see the occasional person who doesn’t want free work.

    Because there is no way to do a private message on these forums, typically we make sure the OP includes a method to contact them.
    Then we close the thread so that any discussion takes place elsewhere.


    @elichersky333
    – how can you be contacted ?

    #279193
    mrditt
    Participant

    Could anyone give experiences or comparisons between iFlyChat and BP Better Messages? I need a solution that gives users the ability to have private chats and group chats with the ability to send attachments. Iflychat is expensive (if including the group chat option) and I’m concerned about the logging of private information, BP Better Messages seems like a good option but I wanted to get feedback first. Alternatively, if anyone has experience with any other solutions, that would be really appreciated too.

Viewing 25 results - 401 through 425 (of 3,443 total)
Skip to toolbar