I use skype all the time, it has saved me i don't know how many hundreds (maybe thousands) of euros on making international calls, BUT... purely by accident, i recently came across something very annoying: I was testing the front end of a non-Joomla site I had designed (it needed a custom CMS) on a friend's computer and kept seeing all these weird flag and dial icons showing up every time a phone number appeared on the site pages. After some research i found out that these icons were showing up because my friend had installed the skype toolbar on his computer. (I hadn't seen this on mine, because i didnt have the skype toobar installed.)
The skype toolbar recognizes phone numbers and skype names that appear on a website so that you can place a skype call with a single click, but it has the annoying side effect that it automatically inserts all these weird icons around the numbers -- injecting them into the display of the website pages regardless of whether this might be desired or intended. In relation to financial or other websites, it could come across to site visitors as a phishing attempt, raising security concerns, etc. But in the case of the particular website i was building (not a financial site), the skype toolbar completely screwed up the design layout because the spacing of the columns changed. It took me ages to find a fix, but finally did come across one. You have to insert the following code into the html header:
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
For non-Joomla sites, I now regularly insert the above as well as the following into the html header in order to block MS smarttags and automatic image toolbars:
<meta http-equiv="imagetoolbar" content="no" />
<meta name="MSSmartTagsPreventParsing" content="TRUE" />
So my question... I don't always have access to as full a testing environment as I would like... I'm wondering whether people have encountered issues with the skype toolbar on Joomla sites or whether the way Joomla sites are setup somehow already block it. Same question with respect to MS smarttags...
If the skype toolbar does in fact interfere with the display of Joomla pages, might someone with better knowledge of Joomla suggest how the code to disable the skype toolbar might be inserted into the relevant Joomla files (and which ones those might be)?
Thanks in advance for your thoughts on it...