I am also having the same issue on one of my clients sites using WordPRess + bbPress with deep integration here:
http://theagelessedge.com/wp/forum/
Please excuse the roughness of layout for now.
Again, like <b>eshipguy</b> has said all of the posts work and can be seen – but every TITLE of very forum page displays “404 Not Found” EXCEPT for forum/php (in the main bbPress directory).
Anyone else figure this out or anyone want to work with me to try and figure it out?
Thanks,
Dave
I am also having the same issue on one of my clients sites using WordPRess + bbPress with deep integration here:
http://theagelessedge.com/wp/forum/
Please excuse the roughness of layout for now.
Again, like <b>eshipguy</b> has said all of the posts work and can be seen – but every TITLE of very forum page displays “404 Not Found” EXCEPT for forum/php (in the main bbPress directory).
Anyone else figure this out or anyone want to work with me to try and figure it out?
Thanks,
Dave
yeah i fixed that by making call wp_title and bb_title conditionally.
hint:
<title>
<?php
if ( function_exists('bb_title') )
bb_title();
else
wp_title();
?>
</title>
Also you will need to send headers in deep integration as some users have reported to get 404 errors on all forum pages
yeah i fixed that by making call wp_title and bb_title conditionally.
hint:
<title>
<?php
if ( function_exists('bb_title') )
bb_title();
else
wp_title();
?>
</title>
Also you will need to send headers in deep integration as some users have reported to get 404 errors on all forum pages
Asfame,
MANY Thanks!
WordPress + bbPress is new to me ( it is my third day working with them both) and your article about deep-integration:
http://www.wpwebhost.com/make-bbpress-theme-match-with-wordpress-by-deep-integration/
was EXTREMELY helpful in me understanding hoe to integrate them both.
Again – many thanks!
Dave
Asfame,
MANY Thanks!
WordPress + bbPress is new to me ( it is my third day working with them both) and your article about deep-integration:
http://www.wpwebhost.com/make-bbpress-theme-match-with-wordpress-by-deep-integration/
was EXTREMELY helpful in me understanding hoe to integrate them both.
Again – many thanks!
Dave
I would also like to thank you for your contributions – I followed the same article!
I would also like to thank you for your contributions – I followed the same article!