Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,051 through 7,075 (of 69,044 total)
  • Author
    Search Results
  • #271615
    mophilly
    Participant

    NOTE: I posted this on March 27 then realized it was posted to the “Installing BuddyPress” forum. Please ignore this post and see the “How-to and Troubleshooting” forum.

    #271596
    HDcms
    Participant

    Hello @dcavins

    After several tests, the author of the theme recognizes that this comes from his code.

    I do not understand the choices for updating buddypress.
    It’s been several weeks since a bug was identified on the list of members of a group.
    I understand that it is not a security breach but it poses a problem of navigation!

    Regards

    Venutius
    Moderator
    billysgtr
    Participant

    Hi Slava, thanks for the suggestions. Unfortunately, it didn’t work. I did that using if current_user_can(‘subscriber’) inside the buddypress/members/index.html

    #271582

    In reply to: Registration

    Slava Abakumov
    Moderator

    BuddyPress doesn’t have built-in shortcodes at all.

    You can google for “buddypress shortcodes” to find what you might need.

    #271576
    Graham
    Participant

    Found the solution in this post:

    https://buddypress.trac.wordpress.org/ticket/7704

    Go to:

    /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress-functions.php

    Around line 807, Find:

    	// The template part can be overridden by the calling JS function.
    	if ( ! empty( $_POST['template'] ) && 'groups/single/members' === $_POST['template'] && 'group_members' === $object ) {

    Change “group_members” to just “members”:

    	// The template part can be overridden by the calling JS function.
    	if ( ! empty( $_POST['template'] ) && 'groups/single/members' === $_POST['template'] && 'members' === $object ) {

    Fixed.

    #271539
    Venutius
    Moderator

    There’s two plugins Mass Messaging for BuddyPress is one, they both work slightly differently so I’d recommend you look at both.

    #271533

    In reply to: GDPR compliance

    HDcms
    Participant

    Hello,
    thank you for the answer

    Of course there will be plugins to perform this operation. It will be another plugin (on my community sites, I arrive at 40!, All essential to achieve features not made by buddypress).
    One more plugin, it is an additional risk of having incompatibilities, slower site, an obsolete version after 2 years …

    All forms are integrating rgpd. It seems logical that buddypress integrates rgpd, because of these private data.

    It would be nice if there is at least one type of field that after the entry is never displayed again, especially for the check box with the link of the rules of use.
    Regards

    #271525
    mfkweb
    Participant

    Hi
    Im using KLEO child theme with buddypress.
    After logged in when member clicks on logo of my website, it directs them to the members page like ‘www.mywebsite/member’
    I want to change it to ‘mywebsite/home’
    Many thanks for your help.

    #271521

    In reply to: Member loop

    shanebp
    Moderator

    The members loop template is here:
    buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php

    #271504
    Venutius
    Moderator

    I still think it’s the database that is dishing out the unique keys so it is what’s controlling the user id’s not WordPress itself. BuddyPress just uses the WordPress User Id.

    #271489
    Michael Ritsch
    Participant

    Heres the link to the other users topic, he used the messages_message_content_before_save filter… but this doesn’t work for me.

    remove_filter( 'messages_message_content_before_save', 'wp_filter_kses', 1);

    send-private-message-in-html

    (sry i can’t edit my own posts after a while..)

    #271483
    Michael Ritsch
    Participant

    I found only one user who find his solution…he modified the core… that’s not what i want to do. And this also brings some security issues.

    messages_new_messages not working with HTML content

    i really have to find a solution for this.

    #271480
    Venutius
    Moderator

    There’s two immediate options – BP Better Registration includes avatar upload in the registration process and BuddyPress Force Profile Photo https://buddydev.com/plugins/bp-force-profile-photo/ sets the site so users cannot access it unless they have a profile photo set.

    jonleesky
    Participant

    Thanks for your help. but it didn’t work, the screen prompt: ERR_TOO_MANY_REDIRECTS

    I’m using the wordpress 4.9.4 and buddypress 2.9.3, don’t know what to do…o(╥﹏╥)o


    @mcpeanut

    #271474
    Steve
    Participant

    Thanks, I did do a quick search at WordPress.org. But thought BuddyPress would have some already built within their own system.

    Nothing inherent within BuddyPress?

    #271473
    Henry Wright
    Moderator

    Glad to see you again on here @mcpeanut. Do share your BuddyPress website and story behind it when it’s ready!

    #271472
    Venutius
    Moderator

    Have you tried disabling all other plugins except for BuddyPress?

    #271469
    Venutius
    Moderator

    There’s a few plugins that provide shortcodes, take a look at the BP Activity Shortcode and also Shortcodes for BuddyPress in wordpress.org.

    Steve
    Participant

    I have searched for shortcode but can’t seem to find what I am looking for. Either it doesn’t exist, it is hard to find, or I am just an idiot.

    I want to find a list of all the shortcode that can be used with BuddyPress.

    I want to create a dashboard page that has
    A list of members friends
    Recent friend activity
    Recent activity in groups I am in

    Where is the shortcode?

    (Also, I know there is a profile page that has all this in it… but humor me. I just want shortcode info. Does it exist and where).

    mcpeanut
    Participant

    @jonleesky I posted the solution to this nearly two years ago, I have not tested this code recently but you can try it out.

    function my_disable_bp_registration() {
      remove_action( 'bp_init',    'bp_core_wpsignup_redirect' );
      remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    
    add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page");
        function firmasite_redirect_bp_signup_page($page ){
            return bp_get_root_domain() . '/wp-signup.php'; 
        }

    What you will need to do is first create a bp-custom.php file (make sure you add the opening and closing tags at the top and bottom ) and put it in your plugins folder, then paste the code between the PHP opening and closing tags and save.

    This should disable BuddyPress registration and let you use WordPress registration as default, hope this helps.

    mcpeanut
    Participant

    @jonleesky I posted the solution to this nearly two years ago, I have not tested this code recently but you can try it out. please see this topic

    #271461

    In reply to: Organic Square theme

    mcpeanut
    Participant

    Hey, @peter-hamilton been a long time mate! Glad you’re still at this, just been to check it out, looking good mate, you remember me right from the last website you created and in these forums? I have one of my own launching at the end of this week I will share with you, its been 2-3 years man since I was really active in here, Just thought I would pop bye seeing as my new build is Buddypress and BBpress once again. I am gonna try to be more active here once again, life has just had me so damn busy man.

    #271456
    njones7
    Participant

    Anyone got anything on this? It is clearly buddypress that is causing this problem, which means that if i ever want to do anything with the media library I have to disable buddypress, which is going to be a no from me.

    #271451
    Carsten Lund
    Participant

    Generally, that is the problem with BuddyPress – top functionality, but the design sucks, and options for customization is very nerdy.

Viewing 25 results - 7,051 through 7,075 (of 69,044 total)
Skip to toolbar