Forum Replies Created
-
@juanmaguerrero por favor, I’d also need the tutorial

Thanks !
In reply to: Disable HTML in activity updatesThank you again !
I’ll try to implement this but in the meanwhile I’ll just allow links. I don’t imagine this being a security threat.
Cheers !
Try this:
On functions.php
add_filter( ‘bp_dtheme_ajax_querystring’, ‘limit_activity_posts’, 15, 2 );
function limit_activity_posts( $query_string, $object ) {
if( ‘activity’ == $object ) {
$query_string = add_query_arg( ‘per_page’, 5, $query_string );
}
return $query_string;
}It’s working for me, thanks to the guys of Huddle Theme
In reply to: Disable HTML in activity updates@boonebgorges I’ve tried and it worked but I didn’t have in mind that mentions also use html to link to users, so using strip_tags is also removing that ``.
I’d like to allow @mentions and links but not the explicit use of ``. Would that be possible ?
Thanks again !
In reply to: Disable HTML in activity updates@boonebgorges thank you very much ! I’ll try this
In reply to: Don’t load comment box until it’s clicked@boonebgorges thanks for replying
In reply to: Don’t load comment box until it’s clickedActivity update’s comment boxes.
I’m using Huddle (http://themeforest.net/item/huddle-wordpress-buddypress-community-theme/835549) but I’ve asked on the forums and the answer was:
“This was the default functionality from BuddyPress original theme, and we kept this.
We don’t plan to do this soon, but if this functionality will be added we will announce this on forum”In reply to: Create new page (i.e. /user/mentions)@ChrisClayton I’m still working on this

An issue I’ve noticed is that for some reason I cannot find, some activity buttons like add to favorites or comment are not working. For example, if I try to add an activity update to my favorites, it actually sends me to the URL http://mysite.com/activity/favorite/218/?_wpnonce=a067fd9559
I’ve checked and the URL is the exact same one that appears on other screens and the link works just fine (it applies some jQuery, I believe) but on this new page it takes me to that URL which is a 404.
Thank you again
In reply to: Mobile status updates@modemlooper really glad to read that

Cool ! I’ve tried it but it didn’t work

Where should I add that code ?
In reply to: Create new page (i.e. /user/mentions)@ChrisClayton you are a genius, man !
It worked out of the box
Quick question:
I’ve added your code to functions.php and it loaded perfectly, but I’d like to turn it into a function (so it’s a little less messy
). What hook should I use ? (I mean which `add_action()` )Thabk you so much again !
+1
In reply to: Ajax activity stream?+1
In reply to: Reminder Profile PictureMaybe this could help: https://wordpress.org/extend/plugins/buddypress-profile-progression/
+1 on this, please. It would be nice to also open it in a lightbox window
In reply to: Interactive Profile Fields During Registration@marcella1981 +1 plugin
In reply to: BuddyPress Global Helper PluginGreat plugin ! thanks !!
In reply to: How Do I get rid of the activation code?Look for the plugin buddypress-disable-activation, may be it will help you
In reply to: customizing the buddybarActually, I think you should add that to /plugins/bp-custom.php (would work anyway)
In reply to: Get activity time_sinceHey @djpaul, thanks !
Actually I want to get it in the format `20 hours, 19 minutes ago`. I tried
`bp_core_time_since(bp_activity_date_recorded());`
But it’s not working
In reply to: Create a link with the user’s username in itOf the top of my head, start by getting the id of the user that’s browsing:
`bp_loggedin_user_id()`
In reply to: Tweet ActivityThanks !
Hey ! try this:
`if ( bp_has_activities( ‘scope=friends’ ) || bp_has_activities( ‘scope=favorites’ )) :`
In reply to: Tweet Activity@billieTS @ultimateuser no I want to know how to do the RSS thingy
could you point me out in any direction ?