I am trying to make a Windows 8 cooker for my site using the following code:
<meta name="application-name" content="Home | <?php echo bloginfo('name'); ?>" /> <meta name="msapplication-starturl" content="<?php echo bloginfo('url'); ?>" /> <meta name="msapplication-navbutton-color" content="#349ed5" /> <meta name="msapplication-tooltip" content="Tooltip Test" /> <meta name="msapplication-TileColor" content="#349ed5" /> <meta name="msapplication-TileImage" content="/logo_w144px.png" />
The properties application-name , msapplication-starturl and msapplication-navbutton-color work fine and are updated only with page refresh - no need to re-commit - but msapplication-tootlip , msapplication-TileColor and msapplication-TileImage completely ignored.
Notes:
- This is a WordPress site.
- IE also ignores the icon for this site
- rebooting the machine did not pull the image
- I run this site from the XAMPP server on another computer, getting it through IP and port numbers.
- For another local site, the icon is displayed, but the same three
msapplication meta tags msapplication ignored, and the icon is used as a tile image
Does anyone know what is going wrong, and how do I fix it?
[edit]
I tried to put the image and settings through the Microsoft buildmypinnedsite.com code generator and using the image and the code that he spat out, but that made no difference.
source share