Stefano
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Set up two-factor app on more than one device@threadi yes, I’m referring to my account on ww.wp.xz.cn.
The page you linked (which I did visit already) only says “Status: Two-Factor app is currently on.”. It doesn’t allow me to set it up on another device. Or am I missing something?
Forum: Plugins
In reply to: [bbPress - Anonymous Subscriptions] Change content of emailYes, it takes 4 arguments now.
No, priority is a WP argument. Check docs for
add_filterif you want to know more.Forum: Plugins
In reply to: [bbPress - Anonymous Subscriptions] Change content of emailI’ve just pushed an update as version 1.3.9 which contains the recipient’s email address as 4th argument to the filter. For the post URL, you can fetch that through the post ID (see plugin’s code as example, again).
Forum: Plugins
In reply to: [bbPress - Anonymous Subscriptions] Change content of emailAh I see your point, I think you’re right!
$user_emailshould also be passed to the filter. Do you feel like there’s something else that you are missing, that should be passed?Forum: Plugins
In reply to: [bbPress - Anonymous Subscriptions] Change content of emailNo,
10and3are priority and number of arguments the callback will receive, as my example callback shows$message, $reply_id, $topic_id. I’d recommend looking at the source for the plugin to see how to handle reply and topic ids.Forum: Plugins
In reply to: [bbPress - Anonymous Subscriptions] Change content of emailNot tested, but something like this should work
add_filter( 'bbp_subscription_mail_message', 'custom_subscription_message', 10, 3 );
function custom_subscription_message($message, $reply_id, $topic_id) {
$message = "your message";
return $message;
}If you need to use dynamic pieces (author name, topic title, etc), see how it’s currently done in the plugin’s code https://github.com/TheCrowned/bbPress—Anonymous-Subscriptions/blob/master/bbp-anonymous-subscriptions.php#L193
Forum: Plugins
In reply to: [bbPress - Anonymous Subscriptions] Change content of emailHi Toengel,
with the filter
bbp_subscription_mail_messageyou can tweak the message content as you wish.Forum: Reviews
In reply to: [Rel Nofollow] Corrupts the codeIt would be helpful to know what the html looks like before and after the plugin’s intervention.
Forum: Plugins
In reply to: [Post Pay Counter] Most recent update brakes image editorThanks, I’m having a look. Are there any errors in your server log?
Forum: Plugins
In reply to: [Post Pay Counter] flag as unsafeHopefully newly-released version 2.790 addresses the issue. Can you confirm?
Forum: Plugins
In reply to: [Post Pay Counter] flag as unsafeUpon closer inspection I can say that the issue was fixed 2 months ago with the latest release 2.784 (2023-12-06). I’ll get in touch with the security platform to have them acknowledge this.
Forum: Plugins
In reply to: [Post Pay Counter] flag as unsafeThere would be if the discoverer had bothered getting in touch with me. I’ll patch it asap.
Thanks for the feedback, I’ve addressed that as well. I will release this as a public update at some point, but feel free to go ahead and take the latest commit from the repo already! 🙂
I’ve just pushed further changes, please give it another try
https://github.com/TheCrowned/bbPress—Anonymous-Subscriptions
- This reply was modified 2 years, 4 months ago by Stefano.
I have not had time to look again into this, will let you know when there’s further updates.