Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 501 through 525 (of 3,863 total)
  • Author
    Search Results
  • #302213
    richard.miller
    Participant

    BuddyPress: 4.1.0
    WP: 5.0.2
    site link: (private site)

    On the members profile pages, clicking certain menu tabs breaks the page – clicking “notifications”, “groups”, or “settings” causes the page to be cut off just below those menu items.

    Through plugin and theme disabling, I’ve narrowed the problem down to an incompatibility between BuddyPress and my Divi child theme.

    I also learned that an incomplete page is likely due to a fatal PHP problem, so I captured the debug log – sure enough, BuddyPress PHP errors all over the place.

    Unfortunately, I’m not savvy enough to know what they mean, or how to fix them.

    An insight AT ALL would be appreciated.

    —–

    [15-Jan-2019 00:59:22 UTC] PHP Notice:  add_option was called with an argument that is <strong>deprecated</strong> since version 2.3.0 with no alternative available. in /nas/content/live/thefluentself/wp-includes/functions.php on line 4048
    [15-Jan-2019 00:59:22 UTC] PHP Notice:  add_option was called with an argument that is <strong>deprecated</strong> since version 2.3.0 with no alternative available. in /nas/content/live/thefluentself/wp-includes/functions.php on line 4048
    [15-Jan-2019 00:59:22 UTC] PHP Notice:  Undefined variable: titletext in /nas/content/live/thefluentself/wp-content/themes/fluent-self-2017/buddypress/members/single/index.php on line 31
    [15-Jan-2019 00:59:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function bp_is_user_forums() in /nas/content/live/thefluentself/wp-content/themes/fluent-self-2017/buddypress/members/single/home.php:88
    Stack trace:
    #0 /nas/content/live/thefluentself/wp-includes/template.php(690): require()
    #1 /nas/content/live/thefluentself/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(155): load_template('/nas/content/li...', false)
    #2 /nas/content/live/thefluentself/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(61): bp_locate_template(Array, true, false)
    #3 /nas/content/live/thefluentself/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(338): bp_get_template_part('members/single/...', NULL)
    #4 /nas/content/live/thefluentself/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-theme-compat.php(212): bp_buffer_template_part('members/single/...', NULL, false)
    #5 [internal function]: BP_Members_Theme_Compat->single_dummy_content('')
    #6 /nas/content/live/thefluentself/wp-includes/class-wp- in /nas/content/live/thefluentself/wp-content/themes/fluent-self-2017/buddypress/members/single/home.php on line 88
    [15-Jan-2019 00:59:24 UTC] PHP Notice:  add_option was called with an argument that is <strong>deprecated</strong> since version 2.3.0 with no alternative available. in /nas/content/live/thefluentself/wp-includes/functions.php on line 4048
    [15-Jan-2019 00:59:24 UTC] PHP Notice:  Only variables should be assigned by reference in /nas/content/live/thefluentself/wp-content/plugins/subscribe-to-comments/subscribe-to-comments.php on line 590
    [15-Jan-2019 00:59:24 UTC] PHP Notice:  get_currentuserinfo is <strong>deprecated</strong> since version 4.5.0! Use wp_get_current_user() instead. in /nas/content/live/thefluentself/wp-includes/functions.php on line 3853
    [15-Jan-2019 00:59:26 UTC] PHP Notice:  add_option was called with an argument that is <strong>deprecated</strong> since version 2.3.0 with no alternative available. in /nas/content/live/thefluentself/wp-includes/functions.php on line 4048
    [15-Jan-2019 00:59:26 UTC] PHP Notice:  Only variables should be assigned by reference in /nas/content/live/thefluentself/wp-content/plugins/subscribe-to-comments/subscribe-to-comments.php on line 590
    [15-Jan-2019 00:59:26 UTC] PHP Notice:  get_currentuserinfo is <strong>deprecated</strong> since version 4.5.0! Use wp_get_current_user() instead. in /nas/content/live/thefluentself/wp-includes/functions.php on line 3853
    #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.

    #302201
    jamesmct
    Participant

    I’ve looked all over, so first off, forgive me if this is a duplicate.

    I’m looking for an admin screen or menu that allows admin’s to see and possibly approve all private group join requests.

    I see the activity feed, but I have to select each notification and while getting newly created members everyday, it is hard to manage all the requests for our different groups.

    http://www.star-dance-academy.com
    BP version: 4.1.0

    TIA

    #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';
    }
    #302119
    gcrea
    Participant

    I have copied create.php into my theme and am attempting to edit it. How do I set the default checked= to a private group status? No matter what I do public is always checked by default. This question extends to the other form fields as well. Also, where do I edit the action for create.php as I will need to add additional form fields? Thanks.

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

    #282931
    jeber2019
    Participant

    I am integrating my site with WC Memberships, so the user will either be logged in or not. Using BuddyPress’ profiles, will they be able to control what is seen and searchable both to other members who are logged in, and to the public-facing site?

    Thanks!

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

    lindsaybwd
    Participant

    Can someone please assist in how I can create a specific button next to ‘Private Messaging’ to link to an existing page?

    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.

    #282431
    matwin23
    Participant

    Since upgrading to 4.0 I can no longer send private messages. When I go into compose a message all fields are there but when clicking ‘send’ it just hides the text in the message box and does not send the message. When clicking in the message box the text re-appears.

    Public messages work fine.

    Im running all the latest updates, the nouveau BP theme with storefront theme. All was working fine before 4.0 update.

    thanks

    diegomiguel05
    Participant

    Hello, I’d like to ask some help, please.

    I need that any user of my site could access the others groups home pages (even others private groups which the user don’t belong to) and access the members lists of any group. Does anybody know any hook or any other way?

    Thanks in advance.

    #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

    nasakenaisensei
    Participant

    WordPress version 4.9.8
    BuddyPress version 4.0.0
    theme SocialChef – Social Recipe WordPress Theme

    https://husbii.com/members/husbii/messages/

    Log in
    ID:husbii
    password:demodemodemo

    Hi there

    I can not see the details of Private Messages.

    When the number of characters is large,

    At the end of the sentence,

    […]

    Although it is displayed,

    You can not click on this,

    Every message,

    I can not see the details.

    To see the contents of the message,

    What should I do now?

    funkman733
    Participant

    Hi, I need to consent the Private Messages reply only to specific User Role.
    So every registered user can read the Private Messages, butI need to to consent the Private Messages reply only to specific User Role.

    What Should I do to do that?

    #282256
    ncovello
    Participant

    Hello,

    I made a button below each post for sending a message to the post author. But I need also that the subject line fills automatically with the post title and ID.

    This is the code I have now:

    /**
     * Get a link to send PM to the given User.
     *
     * @param int $user_id user id.
     *
     * @return string
     */
    function buddydev_get_send_private_message_to_user_url( $user_id ) {
        return wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( $user_id ));
    }
    
    /**
     * Shortcode [bp-pm-button username=optional_some_user_name]
     *
     * @param array $atts shortcode attributes.
     * @param string $content content.
     *
     * @return string
     */
    function buddydev_private_message_button_shortcode( $atts, $content = '' ) {
    
    $atts = shortcode_atts( array(
    'user_id'   => '',
    'username'  => '',
    'label'     => 'Send Private Message',
    ), $atts );
    
    $user_id = absint( $atts['user_id'] );
    $user_login = $atts['username'];
    
    // if the username is given, override the user id.
    if ( $user_login ) {
    $user = get_user_by( 'login', $user_login );
    if ( ! $user ) {
    return '';
    }
    $user_id = $user->ID;
    }
      
    if ( ! $user_id ) {
    if ( ! in_the_loop() ) {
    return '';
    }
    
    $user_id = get_the_author_meta('ID' );
    }
    
    }
    
    add_shortcode( 'bp-pm-button', 'buddydev_private_message_button_shortcode' );
    
    /**
     * Get the button for the post author.
     *
     * @return string
     */
    function buddydev_get_author_private_message_button() {
        if ( ! in_the_loop()) {
            return '';
        }
     
        $user_id = get_the_author_meta('ID');
        // can't pm to themselves.
        if ( bp_loggedin_user_id() === $user_id ) {
            return '';
        }
     
        return sprintf('<a class="sg-popup-id-11605" id="private-message-bp" href="%1$s">%2$s</a>', buddydev_get_send_private_message_to_user_url( $user_id ), 'Send Private Message' );
    }
    
    /**
     * Do you want to automatically inject the button on each post?
     *
     * @param string $entry_content entry content.
     *
     * @return string
     */
    function buddydev_inject_private_message_button( $entry_content ) {
        // append at the bottom.
        $entry_content = $entry_content . buddydev_get_author_private_message_button();
        // if you want to only do it on single entry pages(single post etc), you can comment the above line
        // and uncomment the block below
        /* if ( is_singular() ) {
            $entry_content = $entry_content . buddydev_get_author_private_message_button();
        } */
     
        // want to test for a post type, you may use is_singular('post_type_name') instead of is_singular()
        return $entry_content;
    }
    // append to the post entry?
    add_filter( 'the_content', 'buddydev_inject_private_message_button' );

    Thank you!

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

    #282241
    frosttho
    Participant

    Hey all,

    I’m using the Mesmerize Design and I’m verry happy about it. But after installing BuddyPress I recognized that the Member and Group Navigations on the profile pages are missing.
    In both settings (horizontal and vertical) the don’t appear.
    Aquick view in /wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/single/home.php didn’t help me.

    Do you have any idea how to get the menu back? Users are nearly unable to use it without this navigation bar.

    Thanks!
    frosttho

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

    #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

    #282201
    diegomiguel05
    Participant

    Hello, I hope someone could help me, please.

    I need that any user of my site could contact the administrators of others groups directly (even others private groups which the users don’t belong to). So, is it possible in the groups directory of BuddyPress to show the administrators of each group next to groups titles and its details?

    Thanks in advance.

Viewing 25 results - 501 through 525 (of 3,863 total)
Skip to toolbar