syrus.xl |
12-24-2006 08:32 AM |
Quote:
Originally Posted by soletrader
(Post 1144376)
How do I change the code so it reads the direct path to the url? Im still having some problems in IE 7. Anyone get this to work? Thank you
|
The url in the main popup code you need to change from relative to absolute urls.
Example: (the Popup code)
Code:
<!-- vbMp3 Player Start -->
<if condition="$show['member']">
<script type="text/javascript">
<!--
function OpeniPod(){
iPod = window.open('http://www.domain.com/forum_name/ipod.htm','iPod','directories=no,height=430,width=190,location=no,menubar=no,resizable=no,status=no,toolbar=no')
return false;
}
-->
</script>
<td class="vbmenu_control"><a href="#" onclick="return OpeniPod()">vbPlayer</a></td>
</if>
<!-- vbMp3 Player End -->
Obviously you would need to change the url in bold to reflect your site.
Other code you may need to change to absolute would be in the ipod.htm file - edit this with Notepad and change accordingly.
HTH
|