Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Styling 404 page


_ck_
Participant

@_ck_

I believe 1.0 has 404 support like WP does but the unthemed die page is something I’ve complained about for over a year now to no avail. They just don’t want to add a hook for it so you would have to hack the core to change it unfortunately. It’s really unprofessional.

essentially in functions.php

find function bb_die( $message, $title = '' ) {

and change

bb_install_header( $title );

to

bb_get_header();

then change

bb_install_footer();

to

bb_get_footer();

One easy way for them to solve this is to move bb_die into pluggable.php, so Sam if you are reading this?

Skip to toolbar