WXforum.net

Web Weather => Weather Website PHP/AJAX scripting => Custom Website Templates => Topic started by: saratogaWX on February 19, 2017, 06:18:21 PM

Title: Saratoga USA template -- wxindex/index.php fix for missing IR Satellite image
Post by: saratogaWX on February 19, 2017, 06:18:21 PM
WeatherUnderground is doing some major changes to their website, and is no longer providing the IR Satellite image used in the right-hand image on the wxindex/index.php page.  You can substitute the Visible Satellite image by changing

Code: [Select]
    <img src="http://icons.wunderground.com/data/640x480/<?php echo $SITE['WUregion']; ?>_ir_anim.gif" alt="Regional Infrared Satellite" 
      width="320" height="240" style="margin: 0px; padding: 0px; border: none" />
to
Code: [Select]
    <img src="http://icons.wunderground.com/data/640x480/<?php echo $SITE['WUregion']; ?>_vi_anim.gif" alt="Regional Visible Satellite" 
      width="320" height="240" style="margin: 0px; padding: 0px; border: none" />