-
Author
-
March 30, 2016 at 10:46 #113483adminbhsParticipant
Even in your demo, there is no title.
How can I make that every member page will have his nickname at the top or even unique title?
March 30, 2016 at 19:49 #113649RaduModeratorHi,
We are into this issue and we will let you know when this is fixed
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 31, 2016 at 09:12 #113757adminbhsParticipantWaiting forward for this issue to be solved. thanks
April 14, 2016 at 00:26 #116463AbeKeymasterHi there, have you tried updating to the latest SweetDate version?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.August 2, 2017 at 15:36 #169363swl100ParticipantHi there,
Has this issue been fixed yet? It is not working yet for me (I have the latest version and still there are no page titles on the member’s pages) and the SweetDate demo also has this same problem.
Thanks.
August 2, 2017 at 15:45 #169366swl100ParticipantProblem solved,
For anyone else who reads this, for me it was a conflict between YOAST SEO and BuddyPress. I resolved it by adding this to the child theme functions.php
function wpseo_fix_title_buddypress($title) {
// Check if we are in a buddypress page
if ( function_exists( ‘buddypress’) && ( !empty( buddypress()->displayed_user->id ) || !empty( buddypress()->current_component ) ) ) {
$bp_title_parts = bp_modify_document_title_parts();// let’s rebuild the title here
$title = $bp_title_parts[‘title’] . ‘ ‘ . $title;
}
return $title;
}
add_filter( ‘wpseo_title’, ‘wpseo_fix_title_buddypress’); -
AuthorPosts
The topic ‘No title at member page’ is closed to new replies.