@wordbuddypress from what BP version did you upgrade? What theme are you using?
RE: screenshot of a title
That is the “Create a Group” button that shows up beside the page title of the Groups Directory page, not exactly about the username you mentioned earlier. Could you clarify what you need to address in your post above?
It shows up in both in the Profile page and the create group page, there is the title with the link and then sometime the title without the link. I am using my own theme, I guess thats also the reason for this problem. What could I change in my theme to remove this? Or which file do I have to edit?
It shows up in both in the Profile page and the create group page, there is the title with the link and then sometime the title without the link.
@wordbuddypress You’re correct in discerning that the Create A Group button is not supposed to show in your Profile pages or anywhere else except the Group Directory page. Change to Twenty Twelve theme and check if issue is resolved. If it is, then something in your coding of your theme’s page.php is awry. You might want to check out the page.php file of Twenty Twelve to help you find some resolution.
@mercime Thank you for the hint. The twenty twelve theme displays it correctly, I will look at my them more closely. If I find the mistake I will post it in case someone else has this problem too.
The error is in this script:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2 id="page_title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<p id="author"><?php the_author(); ?></p>
<div class="content">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
Because the title of the profile page (and create group page) is the whole link: <a href="url.com/profile/...">Settings</a>
Maybe someone could tell me what I could change in this title script.
@wordbuddypress there’s nothing obviously wrong with that code. What theme are you using?
@mercime I made my own theme. I also tried using the page.php from the twentytwelve theme but that didn’t work either even though if I activate the twentytwelve theme everything is fine.
I combined my theme with the twenty twelve theme and found out that the error is in the functions.php file. It was because I added the snippet “remove private from post title” I fount on CSS tricks