-
Henry Wright replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 8 years, 5 months ago
I doubt you’ll find a folder with them in it; instead, they probably get added to the database as part of the BuddyPress install routine. Try installing BuddyPress on a fresh copy of WordPress to see if they suddenly show up.
-
Henry Wright replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 8 years, 5 months ago
That’s strange!
Without customising anything, I see this on my install:
@djpaul did all of the Email API heavy lifting, perhaps he knows if there should be items in the list by default?
-
Henry Wright replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 8 years, 5 months ago
Take a look at the
bp_email_get_schema()
function for the default messages used. -
Henry Wright replied to the topic BuddyPress Emails Default Text in the forum How-to & Troubleshooting 8 years, 5 months ago
Is it necessary to create emails for each situation to make sure emails go out?
There should be default items in that list. Did you delete them?
-
Henry Wright replied to the topic How to make group avatars sharper in the forum How-to & Troubleshooting 8 years, 5 months ago
Can you check the size of the image on your server?
-
Henry Wright replied to the topic Protect Groups From Deletion in Admin Dashboard in the forum Creating & Extending 8 years, 5 months ago
If a non-admin user tries to delete a group from within the admin area, they’ll get redirected to your home page.
add_action( 'groups_before_delete_group', function() {
if ( ! is_admin() ) {
return;
}
if ( ! current_user_can( 'manage_options' ) ) {
wp_redirect( home_url() );
exit;
}
} );Note: I haven’t…[Read more]
-
Henry Wright replied to the topic How would I do this in BuddyPress? in the forum Creating & Extending 8 years, 5 months ago
Group posting by administrators and moderators only isn’t possible out-of-the-box. You’d need to write some custom code or find a plugin that can do that.
@shanebp has been working on a geo-location plugin for BuddyPress which might be useful to you.
Hope this info helps!
-
Henry Wright replied to the topic Avatar of the man and woman in the forum Installing BuddyPress 8 years, 5 months ago
I’m not aware of a plugin that’s available that will let you do this. Maybe someone else here will know of one?
-
Henry Wright replied to the topic Membership Codes in the forum How-to & Troubleshooting 8 years, 5 months ago
Yes. Every member in your install will have a user ID. So both BuddyPress and WordPress users will get a number. In fact, at the back end WordPress users and BuddyPress members are the same thing.
-
Henry Wright replied to the topic Membership Codes in the forum How-to & Troubleshooting 8 years, 5 months ago
User IDs are assigned automatically so you don’t need to activate them. With reference to displaying the number on your BuddyPress site, check out this article:
-
Henry Wright replied to the topic 404 for Customizing Labels, Messages, and URLs tutorial for BP in the forum Installing BuddyPress 8 years, 5 months ago
Logged-out visitors should now be able to see the page.
-
Henry Wright updated the Customizing Labels, Messages, and URLs page, on the BuddyPress Codex 8 years, 5 months ago
Do you want to change various labels and messages in BuddyPress, but don’t want to hack the core files to do so? This page explains how to use a language translation file to customize BuddyPress labels, messages, […]
-
Henry Wright replied to the topic Membership Codes in the forum How-to & Troubleshooting 8 years, 5 months ago
Each member is assigned a user ID. The very first user will get 1 and then that number is incremented as each new user signs up. Does that help?
-
Henry Wright replied to the topic Admin approval for profile changes in the forum Requests & Feedback 8 years, 5 months ago
I haven’t seen anything like that either.
-
Henry Wright replied to the topic How to change colors of "SAVE CHANGES" button in the forum How-to & Troubleshooting 8 years, 5 months ago
Sorry for the delay. Looking at your markup,
#signup_submit
looks to be your selector. Glad you got this sorted 🙂 -
Henry Wright replied to the topic 404 on Manage groups page in the forum How-to & Troubleshooting 8 years, 6 months ago
display: none;
wasn’t the best solution. Glad you found a better way 🙂 -
Henry Wright replied to the topic 404 on Manage groups page in the forum How-to & Troubleshooting 8 years, 6 months ago
In that case you could embed some CSS into the
<head>
section using thewp_head
hook.Ref: https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head
-
Henry Wright replied to the topic Email Notifications on Group Activity in the forum Requests & Feedback 8 years, 6 months ago
Is there a formal process for requesting this feature?
Yes. The formal place to request features is Trac.
-
Henry Wright replied to the topic 404 on Manage groups page in the forum How-to & Troubleshooting 8 years, 6 months ago
Just a thought, have you considered a CSS solution?
.tab {
display: none;
} -
Henry Wright replied to the topic Allow group moderators to remove members in the forum How-to & Troubleshooting 8 years, 6 months ago
Inside
groups_screen_group_admin_manage_members()
before the banning and removal operations, there’s a check which asks if the logged-in user is an admin:if ( ! bp_is_item_admin() )
return false;So as far as I know, it isn’t possible to give mods that privilege.
- Load More
@henrywright
Active 8 months, 1 week ago