-
Aron Prins replied to the topic Activity Load More Not Working in the forum How-to & Troubleshooting 7 years, 11 months ago
So a quick fix is:
add to <head> tags:
<script>
function clearCookie() {
jq.removeCookie('bp-activity-oldestpage', {
path: '/'
});
}
</script>And add onload=”clearCookie()” to your <body> tag… Total hack I know. It creates new cookies rather then deleting the previous one so far.
Is this a BP…[Read more]
-
Aron Prins replied to the topic Activity Load More Not Working in the forum How-to & Troubleshooting 7 years, 11 months ago
As this is the only bug preventing me from going live with this new site, I’ve spent the entire day messing around with it.
For what it’s worth: the issue lies in the bp-activity-oldestpage cookie.
Once I delete this individual cookie the page loads fine again. Once the page is reloaded the cookie reappears (as it should) but it doens’t seem to…[Read more]
-
Damon Cook updated the Template Tag Reference page, on the BuddyPress Codex 7 years, 11 months ago
This page is currently undergoing review and updating. References marked with ? have been reviewed for current accuracy.
General Template Tags
bp_get_loggedin_user_nav()
Deprecated
Uses the […] -
Jeff replied to the topic GravityForm, entries, groups and else in the forum Creating & Extending 7 years, 11 months ago
Did you ever find a solution to your first requirement?
– When a new user sign up via GF > create a private group(business) exclusively assigned to this new user (which will be a group admin)?
-
Aron Prins started the topic Activity Load More Not Working in the forum How-to & Troubleshooting 7 years, 11 months ago
Hey everyone,
I’m having an interesting issue.
WP 4.9.6
BP 3.0.0
Theme: BuddyBoss (latest)When on the activity stream, the first batch shows fine, when I scroll down it autoloads and shows “Sorry, there was no activity found. Please try a different filter.”. When I disable autoload and click the load more button, the same message…[Read more]
-
Boone Gorges replied to the topic Desactive / Remove last_activity metadata on user_meta in the forum How-to & Troubleshooting 7 years, 11 months ago
The simplest way to disable, at the moment, is to squelch the
update_user_meta()call. Untested, but something like this should work:
add_filter( 'update_user_metadata', function( $should_update, $object_id, $meta_key ) {
if ( 'last_activity' === $meta_key ) {
return false;
}return $should_update;
}, 10, 3 );
I’ve opened…[Read more]
-
babouches's profile was updated 7 years, 11 months ago
-
Argane Maroc's profile was updated 7 years, 11 months ago
-
Dermargan France's profile was updated 7 years, 11 months ago
-
dermargan belgique's profile was updated 7 years, 11 months ago
-
Arganessences's profile was updated 7 years, 11 months ago
-
Paul Wong-Gibbs replied to the topic BP3.0 strange behavior in the forum How-to & Troubleshooting 7 years, 11 months ago
The log in widget, and the activity stream comment bugs, will be fixed in v3.1.0, which will come out before the end of next week.
-
Paul Wong-Gibbs replied to the topic Few things in the forum Installing BuddyPress 7 years, 11 months ago
This is not a BuddyPress question.
-
Paul Wong-Gibbs replied to the topic bp-nouveau vs bp-legacy in the forum How-to & Troubleshooting 7 years, 11 months ago
It’s likely that any new features will be added to Nouveau, and not Legacy.
It’s up to you which you want to support or build from. -
Paul Wong-Gibbs replied to the topic Read activation key in activate.php in the forum How-to & Troubleshooting 7 years, 11 months ago
bp_get_current_activation_key()? -
Paul Wong-Gibbs replied to the topic Edit or Display "Profile Fields Group" on homepage or elsewhere in the forum Third Party Plugins 7 years, 11 months ago
Yep, you’ll want to use a survey plugin for this, and probably code some sort of integration yourself.
-
Paul Wong-Gibbs replied to the topic Desactive / Remove last_activity metadata on user_meta in the forum How-to & Troubleshooting 7 years, 11 months ago
I don’t know about “simple”. The function in BP is bp_update_user_last_activity() and that calls WordPress’ user meta functions. I am positive there are filters within that stack you could use to override the value or prevent the writes, but you’ll need to look into that code yourself.
@boonebgorges Do you think we can stop this mirroring yet?…[Read more]
-
Paul Wong-Gibbs replied to the topic Error (500) after update from BP 2.9.2 to 3.0.0 in the forum How-to & Troubleshooting 7 years, 11 months ago
It’d been helpful if you’d linked to it, @venuitius 😉
I’ve just tried searching myself and couldn’t find it.At any rate, this is not a BuddyPress problem — it’s an out of date and unsupported plugin.
We are looking at trying to introduce some of these field types into the main BuddyPress plugin for future versions (it will happen, just a…[Read more] -
Paul Wong-Gibbs replied to the topic GDPR compliance in the forum Requests & Feedback 7 years, 11 months ago
Our position is that we want BuddyPress to provide tools that help site owners comply with privacy legislation.
Our 4.0 release, about a month away, will be our first pass at this. Read the latter comments in https://buddypress.trac.wordpress.org/ticket/7698 for linked/related tickets, as well as…[Read more]
-
Paul Wong-Gibbs replied to the topic bp_notifications_get_notifications_for_user filter failing in the forum Installing BuddyPress 7 years, 11 months ago
I can’t see any code change in 3.0 that might have affected this. This filter is called in three places, and each place we pass eight parameters.
If you can debug this, perhaps with
wp_debug_backtrace()and find a code execution path, that would be handy. - Load More