Re: Details About the New Theme Architecture
I just tested locally BP 1.1.
The new theme architecture is great, previously I had a custom bp theme that integrated another WP theme (Thesis). Now it is much easier to integrate another theme!
However, I have found that the BP code many times uses the following code:
load_template( TEMPLATEPATH . '/some_file' );
This doesn’t work quite right if some uses a custom theme, because it directly looks into the parent theme for some_file
instead of checking in the child theme first.