yeap, i forgot to write about it. and there is another problem after install.
in single page (news page for example), when you are not logged in – your sidebar just drops on the footer.. dunno what to do with css about it…
SO SO glad to hear you are having that problem. I am too. I can see what’s happening: the css ID=”Sidebar” is being wrapped into ID=”Content” only on this page and only in a non logged in state (which is why most of us never noticed. I am still trying to find the code that does this as single.php and all other files that help produce this page seem OK. Lemme know if you find it.
Mike Pratt
@mikepratt
15 years, 10 months ago
Before I submit a bug to trac wanted to conduct a sanity check:
The following looks to be a little left over lines screwing up an un-logged in state on Blog posts. in comments.php, line 73 in bp-home theme
<?php if ( get_option(‘comment_registration’) && !$user_ID ) : ?>
<<<<<<< .mine
<p>You must be /wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>”>logged in to post a comment.</p>
=======
<p>You must be /wp-login.php?redirect_to=<?php the_permalink(); ?>”>logged in to post a comment.</p>
>>>>>>> .r392
<?php else : ?>
Clearly one of these was meant to stay.