Search Results for 'buddypress'
-
AuthorSearch Results
-
February 20, 2014 at 11:29 pm #178707
Suzan Jasmin O.
ParticipantHi
I have the latest Wp and latest BuddyPress 1.9.2
On the new user registration form it has FULL NAME box
But I need FIRST NAME and LAST NAME boxes. So I can in admin panel and users on frontend can register new users can fill their names with 2 boxes. And on search page users can search other users by first name or last name. And I can hide last names for some users etc.. Its always convenient to have first and last names in separate DB columns. So please help me out, how can I have the BuddyPress plugged site of mine to function like above?
ThanksFebruary 20, 2014 at 11:20 pm #178706Suzan Jasmin O.
ParticipantHi
I have the latest Wp and latest BuddyPress 1.9.2
On the new user registration form it has FULL NAME box
But I need FIRST NAME and LAST NAME boxes. So I can in admin panel and users on frontend can register new users can fill their names with 2 boxes. And on search page users can search other users by first name or last name. And I can hide last names for some users etc.. Its always convenient to have first and last names in separate DB columns. So please help me out, how can I have the BuddyPress plugged site of mine to function like above?
ThanksFebruary 20, 2014 at 11:17 pm #178705In reply to: Buddypress / WP profile syncing
Suzan Jasmin O.
ParticipantHi
I have the latest Wp and latest BuddyPress 1.9.2
On the new user registration form it has FULL NAME box
But I need FIRST NAME and LAST NAME boxes. So I can in admin panel and users on frontend can register new users can fill their names with 2 boxes. And on search page users can search other users by first name or last name. And I can hide last names for some users etc.. Its always convenient to have first and last names in separate DB columns. So please help me out, how can I have the BuddyPress plugged site of mine to function like above?
ThanksFebruary 20, 2014 at 11:14 pm #178704simple-man
ParticipantThank you @Henry and @DennisBarkerCV for the suggestions.
Please help me further about the following:
1. Do both the Wordfence and Better WP security work ok with BuddyPress?
2. Do I need both of these plugins?
3. Does Better WP security impacts SEO and speed of your site because the plugin pages says it re-writes various URLs to make them hard to guess and more secure?
4. Do I still need a Captcha login plugin? If yes, which one is good?
5. Does it matter which sequence I install these plugins in?Thank you.
February 20, 2014 at 11:08 pm #178703In reply to: Creating a page to make new users…
Suzan Jasmin O.
ParticipantHi
I have the latest Wp and latest BuddyPress 1.9.2
On the new user registration form it has FULL NAME box
But I need FIRST NAME and LAST NAME boxes. So I can in admin panel and users on frontend can register new users can fill their names with 2 boxes. And on search page users can search other users by first name or last name. And I can hide last names for some users etc.. Its always convenient to have first and last names in separate DB columns. So please help me out, how can I have the BuddyPress plugged site of mine to function like above?
ThanksFebruary 20, 2014 at 11:06 pm #178702In reply to: Bug Report: Default Name Field Generation
Suzan Jasmin O.
ParticipantHi truthmedia
I have the latest Wp and latest BuddyPress 1.9.2
On the new user registration form it has FULL NAME box
But I need FIRST NAME and LAST NAME boxes. So I can in admin panel and users on frontend can register new users can fill their names with 2 boxes. And on search page users can search other users by first name or last name. And I can hide last names for some users etc.. Its always convenient to have first and last names in separate DB columns. So please help me out, how can I have the BuddyPress plugged site of mine to function like above?
ThanksFebruary 20, 2014 at 2:05 pm #178679Henry Wright
ModeratorEnhancement suggestions can be made here:
https://buddypress.trac.wordpress.org/February 20, 2014 at 6:35 am #178666In reply to: Custom profile properties
jreeve
ParticipantI *sort of* got it to work with this hack, although I can’t figure out a way to truly remove the
inputtag, since it seems to be necessary:<?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?> <?php if ( 'Name' == bp_get_the_profile_field_name() ) : ?> <!-- Don't allow users to edit their names. --> <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label> <!-- Dummy input, disabled in CSS, because otherwise saving anything causes the user's full name to be overwritten with the username. --> <input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" <?php if ( bp_get_the_profile_field_is_required() ) : ?>aria-required="true"<?php endif; ?> style="display: none;"/> <!-- The thing that actually displays. --> <p id="name"><?php bp_the_profile_field_edit_value();?></p> <?php else : ?> <label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label> <input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" <?php if ( bp_get_the_profile_field_is_required() ) : ?>aria-required="true"<?php endif; ?>/> <?php endif; ?> <?php endif; ?>February 20, 2014 at 2:21 am #178662In reply to: bp-default parent theme missing
deepbevel
ParticipantI added a profile field to the members header.php, it was overwritten when I updated to the latest bp because I forgot to add it to my child theme.
it became the default:
<?php
/***
* If you’d like to show specific profile fields here use:
* bp_member_profile_data( ‘field=About Me’ ); — Pass the name of the field
*/
do_action( ‘bp_profile_header_meta’ );?>
But the field still appears in the members header! how is this possible?
My problem is, I’m trying to recreate the same site again, but I can’t duplicate it, I don’t know how to edit the members header anymore, or why it still works on my demo, but not when I use the same copy of bp as my demo?
Im getting this error in the members header
Warning: Creating default object from empty value in /home/palosverdes1/public_html/wp-content/plugins/buddypress/bp-members/bp-members-template.php on line 662
What’s going on? Please help!
February 20, 2014 at 1:03 am #178658simple-man
ParticipantYes, simple buddypress posting and sharing in the beginning. Will evaluate multisite needs as gain more experience with BP.
Thank you.
February 19, 2014 at 10:46 pm #178654In reply to: Join Group
shanebp
ModeratorTake a look at this file:
buddypress\bp-templates\bp-legacy\buddypress-functions.php~Line 110 there are 2 add_action calls to create a join-group button – ‘bp_group_join_button’.
You need to write a function that checks if the user is a member of any group.
If they are, do 2 remove_action calls so that the button is not created.
Except, of course, for the group that they belong to, otherwise the ‘Leave Group’ button will not appear.February 19, 2014 at 9:22 pm #178650In reply to: Join Group
mrjarbenne
ParticipantYou could use this plugin to create mandatory groups that users can’t leave.
https://wordpress.org/plugins/buddypress-mandatory-groups/
The Group management functionality in the dashboard could help you sort users into the appropriate group.
Something like this would allow you to have users select groups when they are registering
https://wordpress.org/plugins/buddypress-registration-groups-1/
February 19, 2014 at 2:04 pm #178641In reply to: BuddyPress Wall
Chris Bibbs
ParticipantI’m also using WordPress 3.8.1 with Buddypress 1.9.2.
February 19, 2014 at 9:35 am #178635In reply to: [Resolved] Disabling @mentions
sundev
Participantcreate bp-custom.php and place it in wp-content/plugins, not wp-content/plugins/buddypress.
copy directly and paste the code below into bp-custom.php you created.
add_filter( 'bp_activity_do_mentions', '__return_false' );February 19, 2014 at 2:59 am #178625In reply to: Sho all posts by a member with Buddypress
mrjarbenne
ParticipantThe activity feed in BP has a filter that you can use to select things like All posts, All Comments, All Activity Updates etc. It’s a dropdown on the activity feed. It sounds like what you want is for it to default to just posts, and not to everything (avatar changes, friend requests etc.)
This might help:
Here’s another topic in which the user was trying to do something similar
https://buddypress.org/support/topic/show-updates-as-default-in-activity/
February 19, 2014 at 2:52 am #178624In reply to: BP networking among peers only (restricted groups)
aces
ParticipantTry upgrading to bp 1.9+ it has had some attention in the user name area: https://buddypress.trac.wordpress.org/ticket/5185 and https://buddypress.trac.wordpress.org/ticket/4622
February 19, 2014 at 2:48 am #178622In reply to: BP networking among peers only (restricted groups)
mrjarbenne
ParticipantCool. Good luck with it. Breaking up your questions also means that someone doesn’t look quickly at this thread and assume everything is solved. Hope it works out.
BTW: Found this that might help the other issue. Haven’t tested it but Brajesh is a brilliant dude so I assume it will probably work. Just follow along on the comment thread below the snippet: it’s hard to tell if he updated the code, or just suggested how to do so.
February 19, 2014 at 2:31 am #178619mrjarbenne
ParticipantIn the BuddyPress settings, you could just turn off the Friend component.
February 19, 2014 at 12:03 am #178607In reply to: Activity Stream not refreshing
Henry Wright
Moderator1. Have you disabled site tracking? Try going to the WP dashboard where you can disable and enable BuddyPress components and check that site tracking is enabled.
2. Maybe check entries are recorded when using a different theme? Twenty Thirteen is a good tried and tested one.
February 18, 2014 at 11:20 pm #178603In reply to: Pages "members" and "activity streams" are empty
mrjarbenne
ParticipantIn the BuddyPress admin area, you need to assign a WordPress page (created in the Dashboard under Pages/New) with a BP component. This codex page explains in more detail
February 18, 2014 at 9:36 pm #178597DennisBarkerCV
ParticipantThe difference is in the scale and the level of complexity.
buddypress + WordPress on a single site is relatively simple to setup
wheras Buddypress+ WordPress Multisite is more complex and requires additional hosting resourcesThe functionality difference is on a single site install your users will be posting to a single blog whereas on a multisite instaall each user would have their own blog to post to.
If you are just seting up the site then my advice would be keep it simple and go for a single site WordPress+Buddypress setup
I’m a great believer in keeping things simple,and WordPress Multisite creates an additional layer of complexity which you probably do not require in initially.
February 18, 2014 at 8:58 pm #178596In reply to: Profile Fields adding html
micahcb
ParticipantOk great thank you. I am new to php. Should I put it in the /wordpress/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php or one of the other ones? Does it matter where in the file I put it? Thanks!
February 18, 2014 at 4:44 pm #178591John James Jacoby
KeymasterThe problem here is the
bp_has_message_threads()function itself. It comes with hardcoded checks to override the$boxtosentboxorinboxbased on the results ofbp_is_current_action().You could try something this, in lieu of
bp_has_message_threads():function bp_custom_has_message_threads( $args = '' ) { global $messages_template; $r = wp_parse_args( $args, array( 'user_id' => bp_loggedin_user_id(), 'box' => 'inbox', 'per_page' => 10, 'max' => false, 'type' => 'all', 'search_terms' => isset( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : '', 'page_arg' => 'mpage', // See https://buddypress.trac.wordpress.org/ticket/3679 ) ); if ( bp_is_current_action( 'notices' ) && !bp_current_user_can( 'bp_moderate' ) ) { bp_core_redirect( bp_displayed_user_domain() ); } $messages_template = new BP_Messages_Box_Template( $r['user_id'], $r['box'], $r['per_page'], $r['max'], $r['type'], $r['search_terms'], $r['page_arg'] ); return apply_filters( 'bp_has_message_threads', $messages_template->has_threads(), $messages_template ); }February 18, 2014 at 3:33 am #178577In reply to: Show Activity Comments To Everybody
DJsix
ParticipantSo nobody can help me with this? I don’t get it.
The plug-in, “Buddypress Sitewide activity widget” shows ALL activity to EVERYONE (logged in or not), but it is in the sidebar, and I would prefer it be in my activity stream, not the the sidebar.
Is there a way to get the activity stream to show ALL activity to even the non-members?
February 18, 2014 at 2:19 am #178576In reply to: Activity problem
alex80ks
ParticipantWordpress installed in root directory (Linux server)
Upgraded from 3.8
I havent notice when this is started but i think maybe one or two versions before becouse im trying to keep it updated.
Version of buddypress is latest.
I use child theme ob bp-default (list of files:style.css,function.php,header.php,page.php and single.php nothing else)
I have some custom functions two functions can affect maybe. One is for removing query string=version and second is for registeringhttp://code.jquery.com/jquery-1.7.1.min.jsscript -
AuthorSearch Results