Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 6,901 through 6,925 (of 69,106 total)
  • Author
    Search Results
  • #272544
    Venutius
    Moderator

    I think you should submit this as a feature request in BuddyPress Trac

    I would also like to see this as a feature. I think that it should integrate with messaging, you you can add a bunch of friends into a category and choose to message that category for example. I’d also like to see activity shares to these categories.

    Venutius
    Moderator

    What plugin did you use to add the option to only display a menu item to logged in users? Seems like that is what is not functioning. hiding the activity link by hiding the menu item does not hide the activity page from non logged in users, if they know the url they will still be able to view it, to prevent that you should explore the security options available to you. There a number of privacy plugins for bp with a range of features, is it only the Activity page you want to hide?

    BuddyPress uses the default WordPress login page, there’s a number of customisers for this, for example: https://wordpress.org/plugins/admin-custom-login/

    #272541
    glenndavis007
    Participant

    Thank you so much everyone for your time and wisdom!

    I decided to use BuddyPress as it’s never going away, the functionality is endless, it’s not expensive in the formation stage, there are tons of developers, and there is lots of support.

    So thank you @venutius, and @vapvarun, and @krioteh.

    All of your feedback is very helpful in my process to decide in using BP moving forward. Yes, I do not have a lot of time and a one-stop shop like Peepso may make sense now. Yet, my community is still in the birthing stage and it’s best to leave things open as to where it needs to go.

    #272530
    yodam
    Participant

    On BuddyPress settings enable User Groups

    #272521
    Varun Dubey
    Participant

    @galador WordPress login is same as BuddyPress login; you can create a themed login page as well.

    IF you are concern about WordPress.com login options, it might be possible you have enabled it inside Jetpack plugin setting, you can disable from Jetpack option https://jetpack.com/support/sso/

    #272520
    Varun Dubey
    Participant

    @yusterlan
    https://myweb.com/members/username/settings/notifications should point you to the login page ( wp-login.php) and redirect to https://myweb.com/members/username/settings/notifications/ after login, the link is correct and seems working fine.

    You can check following threads as well
    https://buddypress.trac.wordpress.org/ticket/7349

    Error 404 for non logged in users

    #272516

    In reply to: Register page is blank

    Varun Dubey
    Participant

    @fuxwit Please make sure same register page is linked to BuddyPress setting.
    Sometimes slugs are different like register-2

    #272496
    krioteh
    Participant

    Chat – BP Better Mesage :replaces the standard message system BuddyPress supports attachments (video including) and smilies, you can also conduct group discussions

    groups, extended profiles, news areas, activity feeds – this is a full-time functional BuddyPress

    polls – bbPress + GD Topic Polls, WP Easy Poll PRO also allows users to create polls

    for photos and albums (in addition to the voiced options), you can also try BuddyDrive

    but in general, you can see a list of plugins in my profile – there are a lot of things for BuddyPress (not all work correctly, but most of it is used on the sites I follow)
    https://profiles.wordpress.org/krioteh/#content-favorites

    🙂

    #272489
    darunia77
    Participant

    Thanks @venutius.

    I’m actually using Paid Memberships Pro plugin for my memberships management and they just recently released a BP integration which takes care of the xprofile fields plugin problem as I was told by one of their tech support. It is better installed when you just create your site as they still have to create syncing issues between their fields and regular old xprofile fields for older members – currently this syncing is not available but will be. So as a result I will have to manually move the data over from the members prior to using their integration (about 200 people but it’s doable) . I’m waiting for the code to be installed on my site by their tech support to do this.

    But if anyone is interested, they should check out PMPro for managing bp or other memberships, it really is great and it’s always supported. I am using the Pro version which is expensive per year however you get great tech support and they will go into your site to modify things and help you install various add ons and integrations. This BP integration plugin is available in free version too I believe. If you have a serious memberships site where you do or intent do make money, it’s worth to pay for the yearly fee though for support and access to more add ons.

    I’ve tried other membership plugins and just wasn’t working for me.

    Hopefully the old xprofile fields plugin can be cloned by someone for those who are not going to use PMpro. It’s odd that there are not many options for this plugin and it’s not supported as it’s very essential.

    Here’s PMPro info:

    Paid Memberships Pro

    The integration plugin below, you need the above memberships plugin installed though:

    Paid Memberships Pro – BuddyPress Add On

    #272488
    Venutius
    Moderator

    The bp_core_template_plugin function is loading plugins.php from the bp-templates directory, which can be overloaded by placing your own template file in themes/child-theme/buddypress/members/single/plugins.php that’s one way of doing it. another way is to register your own template directory (inside plugin for example) and tell bp to load that.

    chinasun
    Participant

    Hi Vapvarun, thanks for your response. However, it’s not just an auto installer glitch. I don’t think you know “free.fr” host. This host DOES requires the use of “index.php” in the permalinks structure, you just get 404 errors otherwise.

    This a restriction imposed by this host provider. “Free.fr” is free but it imposes several restrictions in exchange. For example, out-going traffic, auto-updates, newsletters, private sites, and any rewrite rule in the “.htaccess” are all forbidden.

    That’s why I was looking for a way to make buddypress working with “index.php” in the permalink structure. In the end, I gave up but it’s a shame cause buddypress is really a great plugin. I’d still be very interested if someone by any chance knows what I need to modify in buddypress to make it work for my particular case.

    Venutius
    Moderator

    Did you try calling:

    $bp = buddypress();
    $user_id = $bp->displayed_user->id;
    #272468
    taskemann
    Participant

    Hi Venutis! Thank you for the tip 🙂

    But I found this code online created by a fellower named Brajesh Singh that worked very well. I just pasted it into my child theme’s functions.php

    //////////////////////////////////////////////////////////////////
    // BuddyPress send private message button
    //////////////////////////////////////////////////////////////////
    
    /**
     * 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 = '' ) {
        // User is not logged in.
        if ( ! is_user_logged_in() ) {
            return '';
        }
     
        $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' );
        }
        // do not show the PM button for the user, if it is aimed at them.
        if ( bp_loggedin_user_id() === $user_id ) {
            return '';
        }
     
        // if we are here, generate the button.
        $button = sprintf('<a href="%1$s">%2$s</a>', buddydev_get_send_private_message_to_user_url( $user_id ), $atts['label'] );
     
        return $button . $content;
    }
     
    add_shortcode( 'bp-pm-button', 'buddydev_private_message_button_shortcode' );
    #272463
    Varun Dubey
    Participant

    @venutius that poll plugin is very old and not working, their codes are 6-year old https://github.com/Themekraft/BP-Polls
    You can check https://wbcomdesigns.com/downloads/buddypress-polls/

    @glenndavis007
    I have also created a couple of add-ons for PeepSo recently like bbPress integration, wpForo integration, LifterLMS Integration.
    You can ask for any plugin suggestion, and we will guide you a best available solution for it, and you can pick which one fits your site entirely.

    For Gallery Solution, You can check for rtMedia or MediaPress; both have the similar features.

    baptx
    Participant

    Hello, WebRTC is now supported on iOS 11: https://en.wikipedia.org/wiki/WebRTC#Support
    I made a WebRTC webcam chat plugin for BuddyPress. I am available as freelance developer so if someone is interested, you can contact me.

    #272454
    Brajesh Singh
    Participant

    Hi,
    It seems you are trying to create a dynamic link to BuddyPress profile tabs. if that is the case, BuddyPress has a special slug ‘me’ that links to currently logged in users profile.

    For example, to link to your events page, you will use

    
     https://www.mysite.com/members/me/events/
    

    The first part

    
    https://www.mysite.com/members/
    

    Is the link to your member directory.

    For example:- To link to the default landing page of the user you can use

    
    https://www.mysite.com/members/me/
    

    and to link to the friends page, you can use

    
    https://www.mysite.com/members/me/friends/
    
    

    Hope this helps.

    #272451
    Venutius
    Moderator

    Hi Glenn,

    I’ve never tried Peepso or Social Engine, so I@m not speaking from a point of balance. I have tried other dedicated hosted platforms such as Ning though so I do have some wider experience.

    I think your issues can be boiled down into two areas: Maintenance, and features.

    Any WordPress site, any site for that matter is going to require maintenance the main question is who does that maintenance, how well is it done and how quickly new issues can be resolved.

    With a WordPress/BuddyPress installation I’d say that the level of maintenance that you yourself have to do (or pay for) is going to be higher than with peepso. Much depends on what features your add to the basic installation, in my experience in general WP and BP updates are solid and cause few issues, it’s usually the other plugins that can cause issues (prime eample recently was a SiteOrigin Page Builder update that wrecked my front page and they did not fix it for several months).

    My expectation with Peepso is that what you sacrifice in the way of variety of options available to you I’d hope that in return the options you do get will be reasonably well integrated with each other and less likely to cause conflicts resulting in feature or site loss that you would need to take a hand in resolving. The downside is if you find there are specific feature you need, or issues that are not getting resolved, you have few alternatives to go to, you may find yourself stuck.

    I once had a paid hosted site costing $50 per month which pretty much ground to halt and the provider refused to see the problem. It made me feel pretty helpless and it was the reason I moved to BuddyPress – I figured the money I saved on hosting I could use to fund feature additions to the basic BP setup.

    Anyway getting back to the point, so I reckon peepso will be less maintenance but with less features, and this brings me on to the second point – features.

    I think it would probably be a good idea to map out exactly which features you want in quite some detail and see how that drives your thoughts. For example you say you want video, would this be you hosting the video files or libraries of YouTube style embeds? Would you need group galleries, user galleries, sitewide gallery etc?

    Here’s what I tend to use:

    Chat – IfyChat – free version limited to 10 concurrent users but an excellent chat engine
    Video/photos/audio – Either MediaPress or rtMedia, rtMedia is more stylish but add-ons are quite expensive.
    Groups/xprofiles, activity, friends – BuddyPress.
    News areas – probably more general workpress based solutions for this, are you thinking RSS feeds from other sites or internal news (could be done with a simple News category?).
    Polls – never really looked at polls, I note there is this – https://themekraft.com/new-plugin-buddypress-polls/ for starters, looks interesting but I’ve not tried it.

    Regarding supporting mobile, BP is coming out with a new theme – BP Nouveau, this has options for vertical menus which I think will be a lot more mobile friendly.

    The bulk of being mobile friendly comes down to the theme you are using and whilst most are responsive these days I personally find that having a mobile responsive theme is not good enough for phones, what I do is run a second mobile specific theme and use a theme switcher to detect and switch themes.

    Another point to bear in mind with BP is that there are a great many plugins that help you choose how your site is going to work, there’s a range of plugins that change the may notifications and email subscriptions work. This is a benefit of BP, but it does also increase the plugin count.

    #272439
    Ravikumar Patel
    Participant
    #272434
    Varun Dubey
    Participant

    @jayell12
    it seems like you have not used
    do_action( 'bp_member_options_nav' );
    inside buddypress/members/home.php that’s why sub nav are not displaying there.

    #272431
    Anas Bin Afif
    Participant

    thank you so much, But if you can change the file name for Arabic language to: buddypress-ar.po
    buddypress-ar.mo to can work good.

    #272430
    worksofweb
    Participant

    Thanks so much for your reply.

    I tried the plug-in and nothing changed for me. I was hoping it was as simple as placing a bit of code into the bp functions file. All I am looking to do is add a notification to the buddypress activity stream when a wordpress post is liked. An activity is created but it only appears under the user’s favorites tab.

    Thanks again for your help!

    #272411
    Varun Dubey
    Participant

    @adianand for each function you can find plugins
    Membership you can check for S2member or Paid Membership Pro
    Groups – Already part of BuddyPress
    Classified – Geo Directory plugin
    Events & Calendar – Event Manager plugin
    Personal and Business Profile: can be classified as a member type

    You can try Reign sandbox demo with BuddyPress

    #272410
    Varun Dubey
    Participant

    @gheebuttersnaps Enfold does not have official support for BuddyPress, they have also mentioned it at their site.
    Inside their support thread

    BuddyPress is not officially compatible, therefore there might be some issues. We will ask our devs for BuddyPress compatibility.

    It will need theme specific testing to add any comment on it.

    #272409
    Varun Dubey
    Participant

    @ladybalabalababy registration confirmation page is “activate” make sure you have created it and it’s mapped inside BuddyPress Page setting.

    #272406
    Varun Dubey
    Participant
Viewing 25 results - 6,901 through 6,925 (of 69,106 total)
Skip to toolbar