Search Results for 'buddypress'
-
Search Results
-
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' );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!!
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?
I need to make my “Members” pages private, but if I do so on “Pages” menu BuddyPress gives me an error.
Topic: Security and privacy issue
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!
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?
thanksTopic: About Members API Customize
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” 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” 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!
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.
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/Topic: Notification links are wrong
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.
I am facing problem about buddypress when i install buddypress the layout pages or dell and layout not working css or another thing
Topic: Limit Friends
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 FriendsI dont have to use UMP, im barely building the site, PLease Help
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!