-
David Cavins replied to the topic Fatal Error When Activating Pending Account in the forum How-to & Troubleshooting 2 years, 3 months ago
Thank you for reporting this issue. The fix is in this commit: https://buddypress.trac.wordpress.org/changeset/13320
We’ll release a maintenance release to address it, but if you need it fixed now, add the conditional in the commit is the solution.
This issue only affects admin users using the Pending Memberships screen, so the problem shouldn’t…[Read more]
-
@mercime replied to the topic Profile Tab in Profile Page is Empty in the forum How-to & Troubleshooting 4 years, 3 months ago
@martohar could be a theme issue or conflict with another plugin. Check the following first
1. Go to wp-admin > Settings > BuddyPress – Components tab and make sure that
Extended Profiles, Account Settings, and Notifications are checked and settings are saved.
2. What theme are you using? Change theme to Twenty Twenty and check if you can see…[Read more] -
Henry Wright replied to the topic How to recreate Activation page? in the forum How-to & Troubleshooting 5 years, 2 months ago
You should be able to create the page yourself. If you go to Pages in wp-admin you can use the Add New button like you would do if you were creating a standard page.
-
Henry Wright replied to the topic Filter the Activity Loop for Specific User Updates in the forum How-to & Troubleshooting 5 years, 4 months ago
Try
using bp_parse_args()
. Here is an example:`
function my_filter_after_has_activities_parse_args( $r ) {
$r[‘per_page’] = 3;
// Do something else here
return $r;
}
add_filter( ‘bp_after_has_activities_parse_args’, ‘my_filter_after_has_activities_parse_args’ );
`
See…[Read more]
-
danbp replied to the topic Problems implementing po/mo file in the forum How-to & Troubleshooting 11 years, 5 months ago
Translation goes throught php gettext module witch use the compiled mo file
Compilation is accomplished by the software (poEdit in your case).The pot and the po files are “working” files, they are not needed on the server.
The pot contains all translatable strings
The po contains the translatable strings AND the translation
The difference is…[Read more] -
JackTheKnife replied to the forum topic BBPress customization of registration process in the group How-To and Troubleshooting 12 years, 3 months ago
Thanks for directing me to a proper forum.
-
lpryor replied to the forum topic Disabling email invitations in the group Invite Anyone 13 years, 2 months ago
Thanks!
@daniellerandal
Active 2 years ago