Categorie: Tech
-
How to fix conflicts in Git repositories after Xcode update
A few days ago I updated to Xcode 6.0.1 (from 5.x), after which I found out that it gave me some unwanted files in the Git repositories on my MacBook Pro, which are not used with Xcode by the way. As I didn’t want to delete a few thousand files by hand on each project,…
-
Remove all theme customizer inline css in WordPress
Recently I had trouble removing all the inline CSS created by the Theme Customizer. As I like to use normal CSS files (with LESS & Grunt of course) I was desperately looking for a way to purge these evil lines. After searching for over an hour I found that it’s as simple as putting the…
-
Double sitename in title with WordPress SEO
If you, like me, developed your WP theme before you activate the excellent WordPress SEO by Yoast you might have double sitenames in the title tag after activating the plugin. Something like: {Sitename}{Page title} | {Sitename} In your header.php file, the code of the title tag will look similar too: <title> <?php echo get_bloginfo(‘name’); ?><?php…