Shit. This forum deleted the code that I typed, and won’t let me edit the post.
You need to go into the editor, and change the header.php.
Find the section of code that relates to the navigation bar, and change the forward slash ‘/’ to ‘/index.php/’.
I wish I could write the code here, but the forum deletes it. Sorry
It’s quite simple to fix from inside the theme editor.
Once you have changed the permalink structure to something other than default…
> Appearance > Editor > Header (header.php)
Find ‘
‘,
Underneath is a bunch of coding for the navigation bar. You need to find:
<a href="//” title=””>
And change it to:
<a href="/index.php//” title=””>
Notice all that has changed is ‘/index.php/’.
Do this for all of the navigation links.
It worked for me!
P.s. Note that if the buddypress developers don’t include this change in their next update, these changes will be wiped out. You would have to create a ‘child theme’ to avoid this changes resetting.
Also note, this does not work for the admin bar links.