Forum Replies Created
-
I found the solution!
The solution was to stop being an idiot and realise I was looking at the WordPress comment form. Duuuuh.
I hope this thread brought some light amusement to your day 🙂
In reply to: disabling breadcrumbs@mdroca You should paste that code into your theme’s functions.php file. Here’s a guide on how to do that safely: http://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
Also, for others wanting to hide bbPress breadcrumbs, this code is a bit more compact but does the same job:
add_filter('bbp_no_breadcrumb', function($arg) { return true; } );
How very dumb of me… yes, it’s my custom theme. I could have sworn when I switched to Twenty Eleven with the same code I had the same problem.
Thanks for taking the time to reply.
That’s just it: the meta box isn’t added. I filtered the arguments used by bbPress in register_post_type and dumped them to a file – I can see that thumbnail is there in the supports array but the meta box doesn’t appear.
I notice that I can link media items to forums, and this is shown in the media library as you would expect for posts. However, has_post_thumbnail() still returns false for the forum.
In reply to: Hiding bbPress topics from logged out usersI blogged about this little tweak too and someone has just posted an edit to display a friendly message instead of the standard “not found” which sort of completes it
http://philipjohn.co.uk/2011/11/14/hiding-bbpress-topics-from-logged-out-users/#comment-1885
In reply to: Hiding bbPress topics from logged out usersI’m not changing the message at all – hence the “dumb” behaviour.