As @tbermudas I have also lost the tinyMCE editor on front-end.
I try to go back to version 2.3, but the zip file in WordPress repo for version 2.3 actually contains version 2.3.1. Where can I download version 2.3?
Thanks.
I have a 404 problem with pagination on topics archive pages, for both admins and non-admins. The first page display correctly, but get a 404 errors on subsequent pages:
`
/topics/page/2
/topics/page/3
`
I am using a custom `archive-topic.php` on my theme and using the following plugins on WordPress 3.5.1:
bbPress 2.2.4
BuddyPress 1.7-beta2
User Switching 0.7.1
WordPress Post Type Archive Links 1.1
WordPress SEO 1.4.4
I have disabled all plugins and switched the theme to TwentyTen with flushing rewrite rules on every steps with no success. I have also changed the permalink structure to default `?post_type=topic&paged=2` and still not working.
On my attempt to debug `$wp_query`, at the `pre_get_posts` action hook, everything looks OK:
`
[query] => Array
(
[paged] => 2
[post_type] => topic
)
…
[is_archive] => 1
…
[is_404] =>
`
However at `template_redirect` action, query looks like:
`
[query] => Array
(
[paged] => 2
[post_type] => topic
)
…
[is_archive] =>
…
[is_404] => 1
`
I only tried that with topics pagination, not forums or replies.
Thanks.