On those Windows machines with Skype installed, it tends to convert all phone-formatted numbers to Skype links so you can click it in order to make a call on Skype.
The question is how do you prevent that to happen for a certain number on page?
|
On those Windows machines with Skype installed, it tends to convert all phone-formatted numbers to Skype links so you can click it in order to make a call on Skype. The question is how do you prevent that to happen for a certain number on page? |
|||||||||||||||
|
|
Try not outputting the numbers as a single piece of text. Instead of
try
and it will disable skype |
|||||||||||
|
|
Using CSS only, it can be removed by overriding the styles used by Skype. Try adding these two lines to your stylesheet:
|
|||||||||||||
|
|
For me |
||||
|
|
|
|
|||
|
|
EDIT: Sorry, I just discovered that IE9 has issues with this solution as it does not support soft hyphens. There is an alternative solution to this problem: You can use a soft-hyphen character (
change to
and be happy :) |
|||
|
|
|
I saw over the interweb a lot of possible solutions javascript solutions, meta tags, css and maybe I found an hack actually working for my websites, I tested on some computers and it work and I think it will work until skype don't change something in their code. I was looking what is the skype exactly doing on our pages, and it creates some span around the phone numbers, as you already said, but it even add an tag at the end of the document, just after the body closed tag. And here I saw the trick! Just before that object there is a configuration tag:
This is added dynamically by the plugin! but here the solution become obvious, to finalle stop skype messing with your design and avoid changing phone number the solution is to insert very early in the document the following tag:
notice the autoextractnumbers="0", here is the trick. The document will not validate anyway with that tag because there is no attribute "autoextractnumbers" but i noticed that it works even if commented:
And that's it! Enjoy your webpages free from messy plugins! And your web page will still validate correctly. Hope it works for you too! I have tested on a couple of computer 3 different browsers and 2 different skype versions, for now it works for me, let me know if it works for you too and if it works share it :) |
|||
|
|
|
I added a space in the first term of the number. Instead of (888) 222-3333 I entered ( 888 ) 222-3333 Granted: may look weird, but it works and it is simple. |
||||
|
|
|
I added a hyphen in a span before the number and then set display:none on the span style, which worked.
|
|||
|
|
|
Skype has taken to adding a randomly generated string of numbers to the end of their span tag, so the above response from Groo is not entirely accurate anymore. To correctly select all Skype tags on a page, use CSS3 wildcard selectors like such : span[class^='skype_pnh_container'] {display:none !important;} span[class^='skype_pnh_print_container'] {display:inline !important;} the ^= operator causes an attribute selector to mach elements that have an class containing a value that STARTS WITH 'skype_pnh_container' and 'skype_pnh_print_container' |
|||
|
|
|
You can also leave the number alone and remove it with JS.
It is harder to do in normal HTML, but Skype doesn't remove the parent container, so put the number in something with an ID, you can do a "getElementById" on it, set the innerHTML to the phone number.
|
|||
|
|
|
Try this. It substitutes spaces in the phone number with an invisible span + the original space char. So skype cannot understand it is a number and our beloved phone number stays the same :) I had to use this approach since I usually let the content administrator change phone numbers at his will therefore I could not use a hard coded number inside javascript. Of course your markup should look like
|
||||
|
|
|
If you are using PhoneGap on iOS this can be a UIWebView issue (separate from Skype). The following line fixes the problem if you don't want automatic links generated in UIWebView: self.viewController.webView.dataDetectorTypes = UIDataDetectorTypeNone; inside AppDelegate.m in -(BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions |
|||
|
|
|
Needed this for 2 projects in a row now, So at our office we made a quick plugin that can be used to solve most cases of it. http://owenmelbz.github.com/noSkype/ Download it from here and you should be away! |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.