-
Henry Wright replied to the topic Does BuddyPress 2.4.0 – Pietro take advantage of php 7 in the forum How-to & Troubleshooting 8 years, 11 months ago
Those pages don’t actually use CPTs at all which means you might not be able to use the
scripts_to_footer_post_types
hook in this case. Which scripts are you trying to move to the footer? It’s easy to move them manually (without the need for a plugin). When enqueuing the script, you set the 5th param ofwp_enqueue_script()
totrue
.Ref:…[Read more]
-
Henry Wright replied to the topic Does BuddyPress 2.4.0 – Pietro take advantage of php 7 in the forum How-to & Troubleshooting 8 years, 11 months ago
Some plugin developers do require more recent versions of PHP but by doing that they limit their potential number of users. The solution could be for WordPress to add an admin notice “You are using an insecure version of PHP, please bug your host to upgrade”. Then once the stats indicate a small number of are users left on 5.2, they can stop…[Read more]
-
Henry Wright replied to the topic Notification emails after import in the forum How-to & Troubleshooting 8 years, 11 months ago
if there is a queue still, it’s in your application’s database/code somewhere
BuddyPress doesn’t queue up emails in this way. You should deactivate all custom code you’re running, that includes any import scripts or custom libraries, plugins, code snippets in functions.php or bp-custom.php and then check again if mail is being sent out.
-
Henry Wright replied to the topic Does BuddyPress 2.4.0 – Pietro take advantage of php 7 in the forum How-to & Troubleshooting 8 years, 11 months ago
Agreed @mcpeanut, the speed improvements alone are worth the upgrade. PHP 7 also has some useful features that us developers would love to use. Problem is, most cheap hosts will still be on something like 5.4 so we can’t use any of the new features in our plugins.
To get an idea what version of PHP WordPress users are on, take a look at these…[Read more]
-
Henry Wright replied to the topic PM username autocomplete without friend module in the forum Requests & Feedback 8 years, 11 months ago
Oops, sorry. Yes it should be defined as
true
. Good spot @shanebp -
Henry Wright replied to the topic PM username autocomplete without friend module in the forum Requests & Feedback 8 years, 11 months ago
Try setting
BP_MESSAGES_AUTOCOMPLETE_ALL
tofalse
. For example, add this to either your theme’s functions.php or your bp-custom.php file:define( 'BP_MESSAGES_AUTOCOMPLETE_ALL', false );
Please note I haven’t tested.
-
Henry Wright replied to the topic Notification emails after import in the forum How-to & Troubleshooting 8 years, 11 months ago
BP uses the
wp_mail()
function to send email. Ref https://developer.wordpress.org/reference/functions/wp_mail/ -
Henry Wright replied to the topic Notification emails after import in the forum How-to & Troubleshooting 8 years, 11 months ago
@shanebp‘s suggestion will mark web notifications as “read”. Regarding email notifications, if they’ve already been triggered and are sitting in a mail queue waiting to be sent, I suggest you contact your host. Hopefully they can delete the whole batch for you directly.
-
Henry Wright replied to the topic Does BuddyPress 2.4.0 – Pietro take advantage of php 7 in the forum How-to & Troubleshooting 8 years, 11 months ago
BuddyPress now includes PHP 7 in its tests so sites running PHP 7 should be covered:
Ref: https://twitter.com/JJJ/status/673520650624061441
Regarding taking advantage of PHP 7 features, the plugin won’t do that. Any feature introduced after PHP 5.2 won’t be in BuddyPress yet because 5.2 is the minimum requirement to run WordPress.
-
Henry Wright replied to the topic Where to learn. in the forum Creating & Extending 8 years, 12 months ago
The Codex is maintained by volunteers (we’re all volunteers here at BP, even the core devs). The good thing is it’s an open source project so you can edit pages, and add new info yourself if you see something that needs improving.
-
Henry Wright replied to the topic Sizing specific avatar img in the forum Installing BuddyPress 8 years, 12 months ago
You should look at the page source and find a suitable wrapper class (that is already in existence). For example:
<div class="this-could-be-your-wrapper-class">
[Read more]
<div class="so-could-this">
<img src="" alt="" />
<span class="this-would-be-useless"></span>… -
Henry Wright replied to the topic buddypress only shows admin member in the forum How-to & Troubleshooting 8 years, 12 months ago
See the Members Loop article for details on how to output a member list.
-
Henry Wright replied to the topic profile avatar overrides menu in the forum How-to & Troubleshooting 8 years, 12 months ago
I can’t reproduce the problem. Do you have any plugins activated aside from BP? I’m using the latest WP (4.3.1) and BP (2.4.0).
-
Henry Wright replied to the topic profile avatar overrides menu in the forum How-to & Troubleshooting 8 years, 12 months ago
Are you sure that’s the Twenty Fourteen theme? I see this:
-
Henry Wright replied to the topic Where is the group directory? in the forum How-to & Troubleshooting 8 years, 12 months ago
Which theme are you using? Try Twenty Fifteen to see if it looks like the documentation screenshot.
-
Henry Wright replied to the topic Sizing specific avatar img in the forum Installing BuddyPress 8 years, 12 months ago
How about being more specific with your CSS selector?
.some-wrapper-class .avatar-150 {
// ...
} -
Henry Wright replied to the topic Where is the group directory? in the forum How-to & Troubleshooting 8 years, 12 months ago
Be sure you’ve created a page called Groups under Dashboard > Pages and then go to example.com/groups in your web browser. You should see a listing of all of your groups.
-
Henry Wright replied to the topic Resolve my own question on support? in the forum Ideas 8 years, 12 months ago
This forum uses bbPress, you should probably add your feature request here:
-
Henry Wright replied to the topic Private messaging – limit amount? in the forum How-to & Troubleshooting 8 years, 12 months ago
This could be implemented by querying the
bp_messages_messages
table for the last 10 rows and then checking thedate_sent
column against the current time. -
Henry Wright replied to the topic organize users into groups in the forum Third Party Plugins 8 years, 12 months ago
This isn’t currently possible. Your best bet is to try searching for a plugin.
- Load More
@henrywright
Active 8 months, 1 week ago