Hi,
I’ve established that it is a change that has been made in the Customizr theme. I had a separate test site running an older version of Customizer that did not have the double Site Title in the tab. When I upgraded only the Customizr theme, nothing else, the problem appeared – the Site Title displayed twice.
It would be great if you could fix this!
Thanks,
Mike
Ops you’re right, I can see this now mmm.
Probably is related to wordpress 4.1, I think something changed for wp_title()
In fact if you look at the demo site which uses customizr version 3.2.8, but wordpress 4.0.2 you don’t see the issue.
Hi @mcarans & @d4z_c0nf
I also just noticed this problem. I upgraded to wordpress 4.1 a couple days ago. This problem hasn’t been here for long. Did WP 4.1 really cause this? I thought one of my plugins was the culprit, I tried removing them one by one (took me a while) to see which one was causing this problem. But nothing changed, I was still seeing the double title text.
Good thing I found this thread, I was about to open a third thread related to this problem! :p
@mcarans @themadwiddler1200
Yes this is due to some changes made in 4.1
For now you can add this to your child-theme functions.php
add_action('after_setup_theme', 'remove_tc_title');
function remove_tc_title(){
remove_filter('wp_title', array(TC_utils::$instance, 'tc_wp_title') );
remove_action('wp_head', '_wp_render_title_tag', 1);
}
@d4z_c0nf
Code you provided worked wonderfully! Thank you! 🙂
@d4z_c0nf
Thanks so much for that code snippet. It did the job!
Hopefully there will be an official fix in an upcoming theme release. If it gets fixed in the parent theme, will that code snippet interfere?
Thanks,
Mike
Hi @mcarans @themadwiddler1200
this should be fixed in 3.2.10, could you confirm?
(you can comment my fix before testing)
@d4z_c0nf
I logged in to WordPress admin and was only offered a theme update to 3.2.9. Where do I get 3.2.10?
Until it becomes available on automatic updates, you can download the zip file here
Thanks to you both.
@d4z_c0nf
I can confirm that 3.2.10 fixes it. Thanks a lot!
Cheers,
Mike
Fine, thanks to Nicolas 😀
Could you mark this topic as resolved?
Thanks