Got a bug report. Need help with something? Ask here.
To file a bug report or help request visit the forum tab and scroll to the new post bit.
PHP updates and fixing BuddyPress Follow
August 4, 2025 in bugs by Matthew Brown
BuddyPress Follow is a plugin we use to enable you to follow rather than “friend” each other. Sadly, it is not PHP 8 ready. This was holding us back both in terms of security and speed.
Today, I fixed that.
It was a four-line fix, which I shared here.
Find line 133 in buddypress-followers/_inc/bp-follow-widgets.php
add_action( 'widgets_init', create_function( '', 'return register_widget("BP_Follow_Following_Widget");' ) );
Then write this instead:
function BP_Follow_Following_Widget_init_func(){ register_widget("BP_Follow_Following_Widget"); } add_action( 'widgets_init', 'BP_Follow_Following_Widget_init_func' );
The reason this works is that the function create_function()
was removed in PHP 8 and was deprecated in 7.4 or thereabout.
Also, this post is the first to use the new Open Mention Tag Patterns. These are dead simple one-line paragraphs with hyperlink templates which can be used to tag your content in OpenMentions, which will ping via WebMention. Your post will then (eventually) be listed on OpenMentions.com.
By default, the writing patterns are enabled for all, but you can add dreamlogging templates if you admin a blog here and want to. You can find the code here. While, yes, you can just grab a link and use it, I think the Patterns are one step easier. Edit as you wish.
The next line was the Pattern:
This is a WordPress Development post.
Fixes and tweaks
June 15, 2025 in bugs by Matthew Brown
In this morning’s dev notes, we have a patched potential security vulnerability and some CSS tweaks to do with sign up.
First, the scary-sounding one. I patched a possible security hole. Some core site functionality was being provided by a deprecated and retired plugin. A patched version exists, but it has a slightly different name (an extra “s” on the end). As a result, automatic updates had been failing. I moved us to the new version without any loss of functionality or fuss.
Now for the signup-related tweaks. I fixed two open issues.
The “register” button, shown when you are not logged in, did not look nice. It was big and had awful margins going on. (A known problem) I reduced its padding to half an em and added a margin of the same amount. I think it looks better now, but I am open to feedback.
The signup form was given a light dusting. There are a couple of fields in that form for spam bots, not humans. I changed the behaviour of the page so people are no longer shown the spammer traps when signing up.
All of those fixes were because I am working on an admin tool to help deal with bot-made spam user accounts. I’m almost ready to test the first iteration.
FAIR package manager
June 12, 2025 in features by Matthew Brown
The Linux Foundation has announced the FAIR package manager for WordPress. This will be an independent and neutral plugin and theme package manager.
One of the features of FAIR is the ability to deactivate Gravatar avatars, which means a slightly reduced privacy leak (depending on how much you trust Gravatar).
As a result, I’m carefully considering making the switch for all sites with Author Buzz UK. Thoughts and opinions gladly received.
A few small display bugs
May 5, 2025 in bugs by Matthew Brown
I’m currently tracking a few small bugs with the site.
- The register button needs to go on a diet (not-logged in view).
- Forum topics (but not replies) are MIA for no good reason.
I do not have an ETA on fixing all the bugs because I am yet to figure out what caused them.
The Online Safety Act 2023
March 13, 2025 in uncategorised by Matthew Brown
The Online Safety Act 2023 comes into force Monday. This should be a good thing except that I now have to do a mountain of paperwork (correctly on the first try) to basically say, “yes, we moderate and no dangerous content is hosted here”.
Failure to do this could land a lot of fines in my direction. I hope this does not force me to shut down Author Buzz, but I do know that I will fight to keep us open and online.
Who knows what happens next?
Blog Activity
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 8 years, 1 month ago
We’ve been adding a bunch of new stuff to Author Buzz. A lot of it is hidden away in preparation for launching an awesome set of new features but some of it is available for general use right now.
New QnA forum […] -
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 8 years, 1 month ago
Everything should be working again but I managed to break everything quite badly today.
First I installed a new plugin which ended up causes a network-wide server error. I then disabled all plugins which was a […]
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 8 years, 1 month ago
In case you thought we had all upped sticks and vanished without a trace. Here is a general update on Author Buzz.
The focus of the team has of late been divided into two broadly equal categories. […]
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 8 years, 1 month ago
We can finally announce some forward progress in the area of modifying member profiles to do what we need them to do. This is almost entirely down to one man who I have never met.
The improvements currently on […]
-
Matthew Brown wrote a new post on the site Author Buzz Developer Blog 8 years, 2 months ago
With a little luck, the site(s) should now be a little bit faster. For those of you who are interested let’s look at how we made Author Buzz a bit faster.
Pretty much most of the speed improvements have come […]