Now I had a simple banner rotator script running, and it worked perfectly in all previous versions. Upgraded to 4.0.2, and it stopped working. I tried all the things I know how and it won't come back.
Here is the code added in the Ad Manager

Instructions:
Now I had the code like so in the header template before. I re-added it in after reverting templates, and it no longer works.
Any clue?
Here is the code added in the Ad Manager
Instructions:
2. Add banners code
Next you need to add the banners.min.js file to your page using the following line of HTML - make sure to put it between the <head></head> tags
<script type="text/javascript" src="banners.min.js"></script> Now you need to add the banners code to your website where you want the banners to display, this takes the following format:
<script type="text/javascript">
show_banners('adLocationName');
</script> adLocationName sets a name to ads at that location. The name refers to the adlocation name on the banners list earlier. For example, the below code:
<script type="text/javascript">
show_banners('sidebar_300x200');
</script>
Next you need to add the banners.min.js file to your page using the following line of HTML - make sure to put it between the <head></head> tags
<script type="text/javascript" src="banners.min.js"></script> Now you need to add the banners code to your website where you want the banners to display, this takes the following format:
<script type="text/javascript">
show_banners('adLocationName');
</script> adLocationName sets a name to ads at that location. The name refers to the adlocation name on the banners list earlier. For example, the below code:
<script type="text/javascript">
show_banners('sidebar_300x200');
</script>
Code:
<script type="text/javascript"> show_banners('top'); </script>
Comment