Search Results for 'buddypress'
-
AuthorSearch Results
-
February 19, 2014 at 9:35 am #178635
In 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.jsscriptFebruary 17, 2014 at 10:25 pm #178571Ben Hansen
Participantthis link might help you understand how the two work together:
multisite is just activated by a setting in your wordpress config file it can be done before or after buddypress but if you are starting from scratch id probably do the multisite first, then add any plugins.
February 17, 2014 at 8:57 pm #178567In reply to: Custom profile properties
shanebp
ModeratorCopy it to your theme or child-theme
See ‘Overloading Template Compatibility theme files’ here:
February 17, 2014 at 8:44 pm #178565In reply to: Custom profile properties
shanebp
ModeratorThe easiest path is just to add a conditional to an override of this template:
buddypress\bp-templates\bp-legacy\buddypress\members\single\profile\edit.phpThe name field is, I believe, always:
input type="text" name="field_1" id="field_1"So in the template, change this:
if ( 'textbox' == bp_get_the_profile_field_type() )to:
if ( 'textbox' == bp_get_the_profile_field_type() && 'field_1' != bp_get_the_profile_field_input_name() )and add an ‘else’ to just show the name value – bp_the_profile_field_edit_value()
February 17, 2014 at 7:54 pm #178561brinkingyellows
Participant@focallocal I saw that your site is running 1.9.2 now. What was it that you did to get the update working?
I tried to update to 1.9.2 and I am still getting the same result. No content on the User and Group pages. I was hoping that with the 1.9.2 version they may have fixed any sort of little issues that remove the pages of Buddypress altogether.
February 17, 2014 at 5:22 pm #178557In reply to: Root profiles deprecated in 1.9.2?
John James Jacoby
KeymasterRoot profiles are not deprecated, though we have some planned obsolescence for almost all of our global constants, moving them into functions with filters and/or options.
Our rewrite rules improvements for BuddyPress 2.0 will ideally enable any component to exist at a root level. At the time that code was written, it solved an immediate problem for us, but going forward this feature should not be exclusive to profiles.
February 17, 2014 at 4:43 pm #178553In reply to: Activate and Register pages are missing
SubstreamAI
ParticipantUpdate: As a test I tried the MesoColumn theme which is well rated and supposed to be BuddyPress compatible. It made no difference, I cannot get the 2 pages created.
February 17, 2014 at 3:32 pm #178544shanebp
ModeratorIn your theme dir, create an over-ride of this file.
buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.phpHow to over-ride a BP template
In the over-ride, remove this code:
<div class="action"> <?php do_action( 'bp_directory_members_actions' ); ?> </div>February 17, 2014 at 2:13 pm #178535In reply to: BP multisite registration issues main & sub-sites
Ayman
ParticipantI have never tried to use “BuddyDev bp multinetwork” but as you described your problem it looks like it has something to do with “BuddyDev bp multinetwork” and not BuddyPress it self. To be more specific I think you should recheck your domain mapping settings.
February 17, 2014 at 9:41 am #178526snowflakesonal
ParticipantDirectly modifying bp_activity_filter_kses() function in bp-activity-filters.php with the following code isn’t helping either: style tag is still getting stripped from the activity stream. Before the last Buddypress upgrade, the same code was working.
$activity_allowedtags[‘div’] = array();
$activity_allowedtags[‘div’][‘style’] = array();
$activity_allowedtags[‘div’][‘style’][‘width’] = array();
$activity_allowedtags = apply_filters( ‘bp_activity_allowed_tags’, $activity_allowedtags );February 17, 2014 at 6:11 am #178523In reply to: Urgent – Website down!
alnasirkarim
ParticipantWhy does buddypress blank out my Dashboard?
February 17, 2014 at 2:19 am #178521aquapan
ParticipantOk either people can’t answer this question or it is being ignored and I have no idea why.
I may just have to skip using buddypress on my main network site if this can’t be answered : (
Disappointed.
February 16, 2014 at 6:35 pm #178516In reply to: Monitoring Registered User?
February 16, 2014 at 12:31 pm #178508Henry Wright
ModeratorHi @josswinn
Is this ticket related to your problem by any chance?
-
AuthorSearch Results