Search Results for 'buddypress'
-
AuthorSearch Results
-
February 17, 2019 at 10:52 pm #302930
In reply to: Changing group slug
shanebp
ModeratorIt’s simple to do.
Create and publish a page entitled ‘Regional Groups’.
Go to the BuddyPress Settings:yoursite.com/wp-admin/admin.php?page=bp-page-settings
For the User Groups setting, chose ‘Regional Groups’ from the drop down.
Then click ‘Save Settings’.BuddyPress will use the Regional Groups page.
And you can use the Groups page for whatever you want.February 17, 2019 at 4:53 pm #302927In reply to: filter activity stream re friends
mrjanvier
ParticipantDear,
I tried but it didn’t work. I made a bp-custom.php map in: wp-content/plugins/bp-custom.php –> In the map bp-custom.php i placed a file bp-custom.php
I used notedpadd ++ as a editor to place the code you give me and copied it to my server. Once installed, i can’t enter my site. It gives an error:
Warning: require …
Fatal error: require(): Failed opening .. class-buddypress.php on line 226This looks strange, cause the code filled in notepadd ++ goes only to line 11.
I filled it in as:
<?php
function bp_activities_user_friends_scope( $retval ) {if ( bp_is_activity_directory() ) {
$retval[‘scope’] = ‘friends’;
}return $retval;
}
add_filter( ‘bp_after_has_activities_parse_args’, ‘bp_activities_user_friends_scope’ );
?>did I do something wrong?
Big thank for youre help
February 17, 2019 at 1:28 pm #302921Venutius
ModeratorLooks like that would be buddypress/groups/single/members-loop.php.
this line:
<?php if ( bp_group_has_members( bp_ajax_querystring( 'group_members' ) ) ) : ?>Would be the one to change:
<?php if ( bp_group_has_members( bp_ajax_querystring( 'group_members' ) . '&type=alphabetical' ) ) : ?>Hopefully that should work
February 17, 2019 at 10:19 am #302918In reply to: Fan Page or group rvert to fan page ?!
Venutius
ModeratorThere’s a plugin the converts a group to announce only, maybe that could be the basis of a fan page?
February 17, 2019 at 6:09 am #302917In reply to: Posts not syncing
Varun Dubey
Participant@hitesh4317 BuddyPress does not any inbuilt feature to display post listing at their profile. You might be using some 3rd party plugin.
February 16, 2019 at 11:26 pm #302913In reply to: Posts not syncing
Venutius
ModeratorBuddyPress does not manage what happens to posts when a user is deleted, I think that’s a WordPress function.
February 16, 2019 at 8:15 pm #302909In reply to: Posts not syncing
hrithik951
ParticipantAnyone here? I have tried EVERYTHING! Running the tasks on Buddypress, eliminating the cache
February 15, 2019 at 10:10 pm #302893In reply to: Prevent banned words from deleting the user’s post?
shanebp
ModeratorIf you are talking about activity posts…
The default behavior is NOT to remove the content, but to refuse to post it and show the error message and leave the content in the textbox.
Are you running some other code re moderation?Anyhow…
Unfortunately, there are no hooks in the moderation functions.
So you would need to remove the hook that is added inbuddypress\bp-activity\bp-activity-filters.phpadd_action( 'bp_activity_before_save', 'bp_activity_check_moderation_keys', 2, 1 ); add_action( 'bp_activity_before_save', 'bp_activity_check_blacklist_keys', 2, 1 );and replace it will a hook that leads to a custom function that does what you want.
February 15, 2019 at 8:01 pm #302891In reply to: Reorder or rearrange buddypress menu items
Varun Dubey
Participant@pratibhasvaksha You can check the following doc
February 15, 2019 at 7:55 pm #302890In reply to: No text editor in Activity box
Varun Dubey
Participantthere is an old thread but need to testing in the current scenario
https://buddypress.org/support/topic/add-tinymce-to-activity-post-form/February 15, 2019 at 6:45 pm #302888In reply to: No text editor in Activity box
Varun Dubey
Participant@markorton93 BuddyPress Post activity section is plain input area without any text editor.
February 15, 2019 at 4:56 pm #302883In reply to: Not embedding in groups
Varun Dubey
Participant@oaz on localhost it might have issues
like this
Refused to display ‘https://buddypress.org/support/topic/not-embedding-in-groups/embed/#?secret=hteHTpJ8oj’ in a frame because it set ‘X-Frame-Options’ to ‘sameorigin’.but at a live site with https, it will fine for both profile and group activity.
eg you can check here https://dokan.wpbp.in/members/admin/February 15, 2019 at 3:49 pm #302878shanebp
ModeratorHmmm… The OP was for default alphabetical listings for group members.
In that case, rather than the
members-looptemplate, the template to overload is this ( assuming you are using the Legacy template pack ):
buddypress/bp-templates/bp-legacy/buddypress/groups/single/members.phpAnd the change would be:
<?php if ( bp_group_has_members( bp_ajax_querystring( 'group_members' ) . '&type=alphabetical' ) ) : ?>So try overloading that template and make sure you adjust the placement of that template in your child theme.
February 15, 2019 at 1:40 pm #302873Venutius
Moderatorthis may have some relevance: https://buddypress.trac.wordpress.org/ticket/8050
February 15, 2019 at 12:19 pm #302869shanebp
Moderatorafaik – It is not possible, at least not easily.
Members are not stored per site – regardless of whether BP is activated per site or globally.
And neither are BuddyPress activity items. “Recently Active” is handled via activity items.WP multisite uses the
usermetadatabase table to track which users have access to which sites.
You could write a custom widget that checks BPlast_activityitems and then filters it by theusermetadata.February 15, 2019 at 6:46 am #302863Topic: Hide Username in autocomplete „send to“
in forum How-to & Troubleshootingmsteimann
ParticipantHello,
I am using the latest BuddyBress version (legacy template) and have disabled the activity stream. For security reasons I want to hide a member’s username wherever it is possible. Can someone please advice me how to hide the username in the autocomplete field? Please note the attached screenshot.
I found this thread, which probably shows a solution for my request, but unfortunately I have no coding skills and got stuck while trying to follow the steps.
Many thanks
February 14, 2019 at 9:10 pm #302856In reply to: Users Not Able to Register
alikadievmr
Participantmy website vikings.life WordPress 5.0.3 BuddyPress 4.1.0
February 14, 2019 at 8:36 pm #302852In reply to: Changing group slug
shemakeswebsites
ParticipantHi Varun, thank you for your response. But I’m not really sure how to do that without affecting the page that currently uses the “groups” slug. Is there a way to change the page end point from groups to regional-groups? I wasn’t able to locate any setting for this.
I have a site that currently uses: http://www.website.com/groups
When I enable Buddypress groups, the content of this page is overwritten with the Buddypress groups content. I cannot change the content from my current groups page to another page as I have a lot of printed material that references that particular page. So I am hoping there is a way to have the Buddypress groups content appear on another page (www.website.com/regional-groups).
February 14, 2019 at 12:55 pm #302844In reply to: Logged in user link to Inbox
johnjack
ParticipantI would find this incredibly useful as well as I am trying to integrate the buddypress personal messaging system in to a site I am working with.
I want to be able to replicate the contents of this div
<div id=”item-body” class=”item-body”>(when “Messages” is selected on the “Members” Page)
I am very new to php/wp dev so struggling a little
Can you help?
February 14, 2019 at 11:04 am #302843In reply to: What are the benefits of the buddypress Community?
Jackson Bird
ParticipantBuddyPress
BuddyPress is a powerful WordPress plugin that takes the self-hosted WordPress sites to integrate with social network and community features. It allows you to handle user profiles, user groups, activities, and others within WordPress blogs. So you can use it as a social network for schools, colleges or universities or a communication tool for friends, organizations or companies; and more. As a result, you can easily develop WordPress community with BuddyPress.February 13, 2019 at 11:36 pm #302836In reply to: deleting spam member doesn’t delete their groups
shanebp
ModeratorYes, it is on purpose – see the ticket.
February 13, 2019 at 9:31 pm #302832In reply to: Comments not saved on Group
JM Deom
ParticipantHi again,
I verify my other plugins and I think I have found where there is come from.
The problem occurs after installing rtmedia for WordPress, BuddyPress 4.5.5. The former version is 4.5.4.
The older comment are visible but not the new one after installing the 4.5.5 version.Do you have an idea where is it come from ?
Thx a lot for your support.
February 13, 2019 at 8:33 pm #302829In reply to: Comments not saved on Group
Venutius
ModeratorThe BP Nouveau I was referring to, it’s the BP Theme, you can check which one you are using in Settings>BuddyPress>Options, it’s either Legacy or Nouveau
February 13, 2019 at 8:23 pm #302827In reply to: Comments not saved on Group
JM Deom
ParticipantIm using BuddyPress Group Email Subscription, BuddyPress Multilingual, BuddyPress Profile Shortcodes and BP Profile Search.
For me a “comment” is a response on a activity post by somebody in a group.
February 13, 2019 at 6:17 pm #302822In reply to: Users Not Able to Register
shanebp
Moderator -
AuthorSearch Results