Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Skype status will not show


leechfreak

Recommended Posts

Hi all,

 

I installed contribution Skype (http://addons.oscommerce.com/info/4004)

I changed the skype config privacy (show status web) to yes.

 

But the status images won't show on www.oefenhoofden.nl

 

Any ideas?

 

[the code]

 

<?php

/*

$Id: skype_contact.php v. 1.00 2006/02/10

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

 

10-2-2006 Wheel of Time

http://www.wheeloftime.be/

 

*/

?>

 

<tr>

<td>

<!--

Skype 'Call me!' button

http://www.skype.com/go/skypebuttons

-->

<script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js">

</script>

 

<?php

 

if ((INFOBOX_SKYPE_SHOW_HEADER == 'true') && (SKYPE_SHOW_CALL == 'true' || SKYPE_SHOW_CHAT == 'true')) {

$info_box_contents = array();

$info_box_contents[] = array('text' => BOX_HEADING_SKYPE);

 

new infoBoxHeading($info_box_contents, true, true);

}

 

if (SKYPE_SHOW_CALL == 'true') {

$skype_call_string = '<div align="center"><a href="skype:' . SKYPE_ID_NAME . '?call" onclick="return skypeCheck();"><img src="' . SKYPE_BUTTON_LINK . '" style="border: none;" alt="' . TEXT_SKYPE_CALL_ME . '" /><br>' . tep_image_button('button_skype_call.gif', TEXT_SKYPE_CALL) . '</a></div>';

}

 

if (SKYPE_SHOW_CHAT == 'true') {

$skype_chat_string = '<div align="center"><a href="skype:' . SKYPE_ID_NAME . '?chat" onclick="return skypeCheck();"><img src="' . SKYPE_BUTTON_LINK . '" style="border: none;" alt="' . TEXT_SKYPE_CHAT_WITH_ME . '" /><br>' . tep_image_button('button_skype_chat.gif', TEXT_SKYPE_CHAT) . '</a></div>';

}

 

if (SKYPE_SHOW_CALL == 'true' || SKYPE_SHOW_CHAT == 'true') {

$info_box_contents = array();

$info_box_contents[] = array('text' => $skype_call_string . '<br>' . $skype_chat_string);

 

new infoBox($info_box_contents);

}

?>

</td>

</tr>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...