Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,526 through 4,550 (of 68,972 total)
  • Author
    Search Results
  • colingdi
    Participant

    So I found (though I can now track it down) a page with how to add custom fields to a group and it worked (yipee) however during testing we’ve realised that when you add the fields and select ‘Create Group and Continue’ and on the next page select ‘Previous’ your fields are blank. But when you just proceed straight through and don’t ever go back they store. I’m pasting the groups code below if someone knows a hook I can use or similar I’d greatly appreciate it.

    function bp_group_meta_init() {
            function custom_field($meta_key='') {
                //get current group id and load meta_key value if passed. If not pass it blank
                return groups_get_groupmeta( bp_get_group_id(), $meta_key) ;
            }
            //code if using seperate files require( dirname( __FILE__ ) . '/buddypress-group-meta.php' );
            // This function is our custom field's form that is called in create a group and when editing group details
            function group_header_fields_markup() {
                global $bp, $wpdb;?>
    <label for="group-guidelines">Group Guidelines</label>
    <textarea name="group-guidelines" id="group-guidelines" aria-required="true"></textarea>
    <br>
    <label for="group-aims">Group Aims</label>
    <textarea name="group-aims" id="group-aims" aria-required="true"></textarea>
    <?php }
        // This saves the custom group meta – props to Boone for the function
        // Where $plain_fields = array.. you may add additional fields, eg
        //  $plain_fields = array(
        //      'field-one',
        //      'field-two'
        //  );
        function group_header_fields_save( $group_id ) {
            global $bp, $wpdb;
            $plain_fields = array(
                                  'group-guidelines',
                                  'group-aims'
                                  );
            foreach( $plain_fields as $field ) {
                $key = $field;
                if ( isset( $_POST[$key] ) ) {
                    $value = $_POST[$key];
                    groups_update_groupmeta( $group_id, $field, $value );
                }
            }
        }
        add_filter( 'groups_custom_group_fields_editable', 'group_header_fields_markup' );
        add_action( 'groups_group_details_edited', 'group_header_fields_save' );
        add_action( 'groups_created_group',  'group_header_fields_save' );
    cachinate
    Participant

    WordPress 5.2.2
    theme: Masonry Hub
    BuddyPress and MediaPress are the plugins being used;

    Problem: I am trying to move the “Submit Post” & “Cancel” buttons on the activity page OUT of the textbox because I need them to be shown at all times WITHOUT activating the textbox, this is so people can just click the picture icon to attach a picture with no words and click submit.

    https://imgur.com/a/KSFyu4l Check these pictures to get a further understanding!

    Possible solution:
    1:
    I’ve looked into mpp.js to trigger the textbox activation when the picture icon is clicked (I know where to put the code to trigger the activation, but I dont know what code snippets I need from: buddypress-activity-post-form.min.js to do it)

    2:
    Override the CSS and force it out be outside of the textbox activation which is what I’d like.

    I’ve spent hours digging at this and haven’t gotten much besides whats above, any help is greatly appreciated!!

    #306879
    snorklebum
    Participant

    Hey, BuddyPress uses bbpress for it’s forum software, you may be better asking there. You’ll also find a plugin directory specific to the forums that hopefully will have something that meets your requirements.

    breatheheavy
    Participant

    Hi there. I am interested in switching to Buddypress from Invision Power Board. I was wondering: in the forums section, is it possible for users to post Instagram, Facebook and Twitter posts? Or can they only simply link to the posts?

    I would like for users to have the ability to post the actual Instagram/FB/Twitter post in the comment versus linking. Is this possible?

    shadowmere
    Participant

    I need to make my “Members” pages private, but if I do so on “Pages” menu BuddyPress gives me an error.

    #306875
    shadowmere
    Participant

    I got a client who has a site with BuddyPress installed, it has about 2500 users registered, and who made the website created a field with sensible information with “Profile fields” and left its visibility as “Public”, now everyone has access to those informations. Is there a way to change every registered user’s visibility in that field? I will consider even SQL queries, or any database info about it. Thanks a lot!

    matwin23
    Participant

    I have just noticed this issue, dont believe it was a capability last time i checked.
    Any member can now go to another members profile and click on settings and adjust the members password, email, visibility, export data etc.
    Why is this available to other members and how do i fix?
    thanks

    #306853
    Krishna Savani
    Participant

    Hello Buddypress Team,

    I am using JSON user plus api with buddypress REST API plugin which is made by you guys so i have issue that if i register new member/user than the new member is not showing in this api “https://ihsmi.org/wp-json/buddypress/v1/members&#8221; please let me know where i am wrong and what to do with this i am registering user by this “https://ihsmi.org/api/userplus/register/?key=5ce84b089c2d1&username=test&email=test@gmail.com&nonce=c589b20004&display_name=testibl&user_pass=krishna&first_name=test&last_name=testiam&#8221; but in members api the new user is not showing at all or also not shwoing others users it just showing some of them..please let me know how can i see all the members of buddypress or newly register member of buddypress.

    waiting for your positive response!

    volcore
    Participant

    For my website, I’ve created an ID field users have to enter to create an account. On a user’s profile page I want the ability for others to click the ID and go to an external site with that ID. For example, with an ID of 12345, I want the ability for someone to click the link in that user’s profile and go to example.com/12345. BuddyPress already has something similar to this but it only searches for members in the site with that ID. I want it to go to a different site with the ID. I assume this would have to be an action of some kind, but what would the hook be? Additionally, how can I access the profile field’s value? Any idea what the code would look like to send someone to a different site in a new tab? Thanks for your time.

    fabiojr2016
    Participant

    Perfecto, muchas gracias por el código… si, con ese código si pude deshabilitar el registro de BuddyPress y dejé el registro original de WordPress. Yo cree el archivo bp-custom.php dentro de la carpeta wp-content/plugins/

    Es decir, tengo Buddypress funcionando, pero con registro de WordPress.

    <?php
    /*disable registration bp */ 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-login.php?action=register’; }
    ?>

    peterfae
    Participant

    Hey. I know there’s a place to do buddypress customizations in the FTP. I’m trying to remember how to do this. What I’d like is to have entries show *full length* on the profile pages, but not on the activity feed.

    Meaning – no ‘read more’ or anything like that, just a smooth scrolling experience on the PROFILE, but not on ‘Activity’

    Reason – I’ve got a site where Authors update their Stories as a documentary-blog through the buddypress. I’d like to offer the Readers a smooth experience on the PROFILE of that Author, but leave the general ACTIVITY FEED normal with the ‘read more’ and all that.

    Help?

    (thanks)
    https://intothemythica.com/mythos/

    #306825
    chris19731973
    Participant

    Thank you for the plugin … but it doesn’t work for me …
    Each single listing is a post with the code below
    I will need to add php codes to Create a linkk to Buddypress user profile

    #306823
    Puppy Play France
    Participant

    Hello, I use Buddypress version 4.3.0. The notification module does not work. Some notification links point to bad pages. Is the problem known, if so how to fix it. My site is installed on a WordPress server.

    #306808

    In reply to: Account deletion

    shanebp
    Moderator

    Interesting…
    Forums are handled by bbPress.
    There may be a need for coordinate between bbPress and BP re account deletion.
    Did you ask about this on their support site?
    Try to get a response from them.
    And then, if necessary, open a ticket here.

    increatech
    Participant

    I am facing problem about buddypress when i install buddypress the layout pages or dell and layout not working css or another thing

    #306783
    pmgstudios
    Participant

    I want to limit Friends to my Members based on Roles, or Subscription Level

    Im not sure if this helps… but
    Im currently using BuddyPress (latest version) and Ultimate Membership Pro Integration for subscription, it allows me to assign levels to Word Press User Roles but dont dont have a feature to limit Friends

    I dont have to use UMP, im barely building the site, PLease Help

    ctatarau
    Participant

    Hi all!

    I’m creating a site with profile fields which can have up to 40000 options. I already loaded the options into the db via csv file. Now, the site loads very slowly and is basically unusable. Once loaded, everything works fine, including the profile search. How can I prevend Buddypress from loading all options for this field by default?

    I’m using select2 multiselect fields, which can load small chunks of data via AJAX/PHP. I now just need to prevend loading the field when the site loads. I’m grateful for any hint!

    Anonymous User
    Inactive

    Hi @philippebrousse and @shanebp

    I’ve seen the ticket(s) (I think #8104 & #8108 are duplicates) about this need.

    In the meantime, you can still send BP Emails in text/html using wp_mail using these filters:
    https://gist.github.com/imath/4faef242ae104c65ddb9ec711ea37189

    #306774
    elliotyamoah
    Participant

    Hi, I hope this is still on topic. Here is another feature request that I need for my site. I’m looking for something like a cross-domain member type. In this case the activity feed from one BuddyPress site would feature on another BuddyPress site. Members would be filtered out by whether they have a local account or an account synchronized from another BuddyPress site.

    Please check out the post here

    Extended Community

    Thank you

    #306773
    elliotyamoah
    Participant

    Hi, I hope this is still on topic. Here is another feature request that I need for my site. I’m looking for something like a cross-domain member type. In this case the activity feed from one BuddyPress site would feature on another BuddyPress site. Please check out the post here

    Extended Community

    Thank you

    #306772
    elliotyamoah
    Participant

    Hi, I hope this is still on topic. I’m looking for something like a cross-domain member type. In this case the activity feed from one BuddyPress site would feature on another BuddyPress site. Please check out the post here

    Extended Community

    Thank you

    #306771

    In reply to: Group Type Development

    elliotyamoah
    Participant

    Hi, I hope this is still on topic for Member Types. I’m looking for something like a cross-domain member type. Please check out the post here

    Extended Community

    Thank you

    shanebp
    Moderator

    @philippebrousse

    I agree that it is an ongoing issue.
    Please open a ticket here.

    Philippe
    Participant

    Hi everyone,

    Thanks for this feed providing a working solution to an issue apparently shared by many.

    @BuddyPress-team, do you guys think it would be possible to implement a solution in bp-core similar to what @uscore713 suggested?

    I am not yet familiar enough to comprehend the need to work with plain-text emails when a custom smtp provider is defined…

    Many thanks,

    Phil

    #306756
    shanebp
    Moderator

    Probably yes re scope – so the js is not being loaded.

    That’s why I suggested just a basic form submit and handle approach.

    Or you can take the time to puzzle thru the Nouveau scope.
    For example – do you need to create an instance of the basic class?

    \bp-templates\bp-nouveau\buddypress-functions.php
    Line 659: bp_nouveau(); 
Viewing 25 results - 4,526 through 4,550 (of 68,972 total)
Skip to toolbar