Search Results for 'buddypress'
-
AuthorSearch Results
-
April 22, 2015 at 4:55 pm #238215
In reply to: [Resolved] authordata – latest Buddypress
danbp
ParticipantRead here if it can help you
https://buddypress.org/support/topic/creating-a-custom-tab-that-takes-in-the-info-from-wp-recent-posts/April 21, 2015 at 11:35 pm #238184winnergirl
ParticipantWow, thanks so much for the fast reply. I activated BuddyPress and set it up, but the BP pages are messed up versions of my other site pages. I will go back through it all again and try to see where I went wrong. Again, thanks for the reply, I really do appreciate it. Also, I do not want the BP pages on my main menu. I will have to work on that, too.
April 21, 2015 at 10:27 pm #238181Henry Wright
ModeratorApril 21, 2015 at 10:25 pm #238180Henry Wright
ModeratorHi @winnergirl
Does BuddyPress require its own independent WP site?
No. BuddyPress works just like any other plugin you might install on your WordPress website. You should just be able to click ‘activate’.
April 21, 2015 at 7:09 pm #238176In reply to: FATAL ERROR: BuddyPress 2.2.3 – Security Release
shanebp
Moderator@i-am-anja – I apologize for the fact that you weren’t provided good info on how to access your dashboard.
You will need to use FTP or if your host provides a File Manager ( maybe thru cpanel ).
Then navigate to[your site]/wp-content/plugins/buddypressand either delete the buddypress folder or rename to something else, for example ‘buddypressX’.
Doing so means BP will not be loaded and you should be able to access your dashboard.April 21, 2015 at 6:09 pm #238174zeesh49
Participant@quaelibet and @danbp can you provide details of how you setup a vhost? I googled and have been able to setup a vhost but it only access the xampp page and not the wordpress page.
My host file contains the following:
127.0.0.1 buddypress.local
::1 buddypress.localMy httpd-vhosts.conf file contains the following:
<VirtualHost *:80>
DocumentRoot c:/xampp/htdocs
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot c:/xampp/htdocs
#DocumentRoot c:/vhosts/buddypress.local
ServerName buddypress.local
</VirtualHost>when i run the URL: http://buddypress.local, it resolves to http://buddypress.local/xampp/ page
but when I run the URL http://buddypress.local/wp (my wordpress folder name is ‘WP’) it says page cannot be displayed. this is in internet explorer.kindly help.
April 21, 2015 at 3:54 pm #238162In reply to: Register page password strength and hint
Henry Wright
ModeratorI assume this is what is being used? If so I can just add this password hint but what file do I need to edit?
You shouldn’t edit core files because when you update BuddyPress your changes will be lost. It’s better if you track down the root cause of the problem and try to fix it.
April 21, 2015 at 2:20 pm #238157In reply to: Register page password strength and hint
leanneoleary
ParticipantI am using Cinematix (http://themeforest.net/item/cinematix-buddypress-theme/4959387) and haven’t customised it in any way.
I have found the default HINT for wordpress is the following:
<?php _e(‘Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! ” ? $ % ^ & ).’); ?>
I assume this is what is being used? If so I can just add this password hint but what file do I need to edit?
Many thanks for your help.
April 21, 2015 at 2:10 pm #238153In reply to: FATAL ERROR: BuddyPress 2.2.3 – Security Release
John James Jacoby
KeymasterWe’ve released 2.2.3.1 to address this.
It should appear in your dashboard shortly.
If the error is preventing you from accessing the dashboard, delete
wp-content/plugins/buddypresscompletely, and try again.April 21, 2015 at 9:47 am #238143In reply to: Activate bbPress?
Henry Wright
ModeratorHi @wwtuan
Do you have the exact same page (Comunity) assigned to more than one component at Settings > BuddyPress > Pages?
April 21, 2015 at 3:19 am #238140caniwigirl
ParticipantWith further testing I have resolved that HIDDEN FORUMS will show for Moderators and Keymasters (as per bbPress documentation).
HIDDEN GROUPS not showing for anyone (keymasters, moderators of group members) in BuddyPress under ‘All Groups’ or ‘My Groups’ tabs. Only Public and Private groups show. The count of groups indicates the appropriate numbers however…
April 21, 2015 at 1:05 am #238139caniwigirl
ParticipantI am running the current versions of everything as of today’s date… BuddyPress 2.2.3, bbPress 2.5.7 on WordPress 4.1.1
The problem I am having is that, for the most part, I only want either Public or Hidden groups with their associated forums.
The directory listing only displays the public groups and the forums only display the public forums.
As a Site Admin and Keymaster, I can’t even see the hidden groups (although the count increases to show the additional number of hidden groups). In fact, none of the hidden groups show under the ‘My Groups’ tab for me or any user who is a member of a particular hidden group (although the count indicates that they area member of this non-visible group that they can’t get access to). I can see the forums, however.
Essentially, the Hidden function appears to not be working for groups and forums as neither admins nor members of them can gain access without being provided with the URL.
April 21, 2015 at 1:03 am #238138In reply to: Add Friend Button
novanotion
ParticipantI upgraded to BuddyPress 2.2.3. I changed to Twenty Fourteen theme and it still does the same thing. Even when I change the view from All Members to My Members all the buttons still say Add Friend
April 20, 2015 at 11:32 pm #238137In reply to: Sorting members by id in members-loop
danbp
ParticipantDon’t hack core files !
It will be overwriten at next BP update.
Use preferably a filter function. Give this a try (add it to bp-custom.php) :
function members_dir_oldest_first( $bp_user_query ) { if ( 'newest' == $bp_user_query->query_vars['type'] ) $bp_user_query->uid_clauses['order'] = "ASC"; } add_action ( 'bp_pre_user_query', 'members_dir_oldest_first' );April 20, 2015 at 9:58 pm #238134In reply to: Links in Bio of Profile fields (Bug)
danbp
Participanthi @utahman1971,
this is the default behave of extended profile fields. Also it’s very handy, as those links became searcheable keywords. This let users click and find other entered same words.
That said, a bio is generally more personnal, so those links maybe less important…
Here’s a snippet (bp 2.0.1 +) you can add to bp-custom.php. It let’s you selectively disable those automated linking from some fields and let some other in place.
function my_xprofile_filter_link_profile_data( $field_value, $field_type = 'textbox' ) { // Access the field you are going to display value. global $field; // In this array you write the ids of the fields you want to hide the link. $excluded_field_ids = array(2,6,7); // If the id of this $field is in the array, we return the value only and not the link. if (in_array($field->id, $excluded_field_ids)) return $field_value; if ( 'datebox' == $field_type ) return $field_value; if ( !strpos( $field_value, ',' ) && ( count( explode( ' ', $field_value ) ) > 5 ) ) return $field_value; $values = explode( ',', $field_value ); if ( !empty( $values ) ) { foreach ( (array) $values as $value ) { $value = trim( $value ); // If the value is a URL, skip it and just make it clickable. if ( preg_match( '@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', $value ) ) { $new_values[] = make_clickable( $value ); // Is not clickable } else { // More than 5 spaces if ( count( explode( ' ', $value ) ) > 5 ) { $new_values[] = $value; // Less than 5 spaces } else { $search_url = add_query_arg( array( 's' => urlencode( $value ) ), bp_get_members_directory_permalink() ); $new_values[] = '<a href="' . $search_url . '" rel="nofollow">' . $value . '</a>'; } } } $values = implode( ', ', $new_values ); } return $values; } /** * We remove the buddypress filter and add our custom filter. */ function remove_xprofile_links() { // Remove the old filter. remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 ); // Add your custom filter. add_filter( 'bp_get_the_profile_field_value', 'my_xprofile_filter_link_profile_data', 9, 2); } add_action('bp_setup_globals', 'remove_xprofile_links');If you want to deactivate completely profile fied links, you can use this function:
function bpfr_remove_xprofile_links() { remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 ); } add_action('bp_setup_globals', 'bpfr_remove_xprofile_links');April 20, 2015 at 9:11 pm #238132In reply to: [Resolved] Remove Close on SItewide Notices
Michael Bryner
ParticipantOkay, not worried about it anymore, and I just using what ever I was saying I did not want. Sorry, if I jump the gun thinking you were jumping on my shoulder. I just hate having issues. This is pretty much a no more worry thing for me. I have a bug I need to start another topic to see if they will fix in next buddypress update.
April 20, 2015 at 6:14 pm #238115In reply to: Sorting members by id in members-loop
danbp
ParticipantApril 20, 2015 at 4:39 pm #238106In reply to: mentions.min.js
danbp
ParticipantPlease give details about your install.
https://buddypress.org/support/topic/when-asking-for-support-2/April 20, 2015 at 12:54 pm #238100In reply to: Members loop doesn’t show new members
shanebp
ModeratorMembers won’t appear in the members loop until they have a last_activity entry.
Logging in will create that entry.
Or you can give them one as soon as a member is registered via front or back end:function webmister_add_last_activity( $user_id ) { bp_update_user_last_activity( $user_id, bp_core_current_time() ); } add_action ('user_register', 'webmister_add_last_activity', 20, 1);Put the function in your theme/functions.php or in bp-custom.php.
April 20, 2015 at 12:40 pm #238099danbp
ParticipantIt’s a bit obvious to explain.
When group component is activated, you should have a page assigned to groups. Ensure this page exist, without any content , page template or parent page. Just a page with a title.Don’t forget to allow group forums in bbpress forum settings and to assign a group forum page, which should not be the existing Group page of BP.
On front when you create a new group, you create first the group. In one of the creation steps, you can check “allow this group to have a forum”. Then you save this. Once saved, you will see that the group name appeared in the select box. You must save this again to definetly activate a forum to this group. Same can be done by accessing group settings > forum tab.
Resume of creating a group with forum
enter a group name and description, check allow forum. Save. Select box must now contain the new group name. Save again.More details here.
April 20, 2015 at 12:26 pm #238098In reply to: Members loop doesn’t show new members
danbp
ParticipantThnak you.
Have you a test site or a local install where you can make some test ?https://buddypress.org/support/topic/when-asking-for-support-2/
I tried to change role and other fields in new members, but nothing happened.
On a single regular install, all BuddyPress members have the default role you assigned to new users in WP settings > general. There is nothing to change at this level when they don’t show up on member’s directory.
If you need some fake BuddyPress users and content, i suggest you to use BuddyPress Default Data, which is great to control if anything is working correctly.
Deactivate your theme and all other plugins except BP and use Twenty Fifteen while testing.
Activate also wp_debug in wp-config, and see if you get somme php errors.April 20, 2015 at 11:25 am #238095In reply to: Members loop doesn’t show new members
danbp
Participanthum… difficult to say at t he moment, as you use 2 different site apparently.
hxxp://www.anadercategori.org/ and hxxp://pallavoloromana.it/anadercategori/squadre/test7/
Which site belongs your members to ? Where is buddyPress installed ?
BuddyPress does not work on installations where you give WordPress its own directory.
Read here: https://codex.buddypress.org/getting-started/April 20, 2015 at 11:11 am #238094danbp
Participantalready solved many times on the forum. Choose from here ! 😉
April 20, 2015 at 10:29 am #238091In reply to: Members loop doesn’t show new members
webmister76
ParticipantApril 20, 2015 at 8:49 am #238087In reply to: Share Post to Activity Feed
-
AuthorSearch Results