Hello.
Yes, I have exactly the same problem.
@bapakrob / perezlr,
I haven’t seen this in any of my testing and it’s not currently happening on my sites but I’ll have a look through the code and see if I can figure it out.
Thank you. Let me know if you need more info or if you need admin access via DM.
@bapakrob,
Have a try of this as a fix. In the admin/subscribers.php file and fine this line:
$this->display_category_form($_POST['category']);
Immediately before it try adding these lines:
$categories = array();
if ( isset($_POST['category']) ) {
$categories = $_POST['category'];
}
Does that remove the error message and restore a ‘normal’ looking form?
I changed it to this, but no success.
$categories = array();
if ( isset($_POST['category']) ) {
$categories = $_POST['category'];
}
$this->display_category_form($_POST['category']);
Thank you, but, with the new code, nothing is changed 🙂
@bapakrob / perezlr,
What steps are needed to reproduce this issues? Does this happen on a new page load? Or only when you are using the form?
How many categories do you each have on your sites? Do you have any excluded or compulsory categories?
Can i e-mail you login credientials, Mattyrob?
@bapakrob,
You can but let’s try one more thing first as I think I have reproduced the issue and also fixed it.
Try downloading this file and using it to replace the /admin/subscribers.php file on your blogs. That should fix the errors.
https://plugins.trac.ww.wp.xz.cn/export/896257/subscribe2/trunk/admin/subscribers.php
Yes! That did it. Thank you very much.
Hope it’s been useful for you.
@bapakrob,
Excellent, thanks for reporting this issue and checking the fix out for me. Those changes are already rolled into the development code for the next version.
Now that I have updated to 9.3 my jetpack stats has disappeared. When I deactivate the plugin the stats come back.
@desertravenart,
I don’t use JetPack myself. Can you isolate this further for me so I can start to look at a cause and a fix?
Not much to tell really. I updated subscribe2 on both of my blogs and then the site stats portion of Jetpack guit working. If I deactivate Subscribe, it works again.
@desertravenart,
I figured out the issue and I’m working on a fix.