Forum Replies Created
-
Author
-
swl100Participant
The problem is now resolved. Thank you. I followed your instructions and I narrowed down the issue to functions.php. I recreated that file and copied everything across from the old one into a new file. I changed the order of some of the functions and I think that fixed the problem.
thanks again.
swl100ParticipantThank you Kieran, I’ll do as you suggested on Monday and let you know how it goes.
swl100ParticipantFYI, it was previously working fine and the problem seems to have randomly been introduced.
FYI, I disabled plugins and that didn’t solve the problem.
I think the problem may be related to some customisation in my child theme, but I can’t think what it could be.swl100ParticipantProblem 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’);swl100ParticipantHi 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.
-
AuthorPosts