Best way to do this, is
Make a User Profile Field and call it Your Zipcode/Postcode then your weather activated then get the field number eg: field14 so the [fieldx] will be [field14] also you can try
Code:
<script type="text/javascript" language="javascript1.2" src="http://weatherreports.com/jscript.html?width=234&height=60&theme=lblue_no_search_box&location="$post[fieldx]"&units= f">
</script>
<div><a href="http://www.weatherreports.com/"><small>Weather Reports</small></a></div>
OR
Code:
<if condition="$post['fieldx']">
<script type="text/javascript" language="javascript1.2" src="http://weatherreports.com/jscript.html?width=234&height=60&theme=lblue_no_search_box&location="$post[fieldx]"&units= f">
</script>
<div><a href="http://www.weatherreports.com/"><small>Weather Reports</small></a></div>
</if>
that code can be used in postbit_legacy too.. aswell as Navigator.
Just thought id share...
Also if you like to have your own weather for the Navigator, and if the user has put their code in, it will change to theres put this
CHANGE
YOURCODE to your Zipcode/Postcode whatever.
Code:
<script type="text/javascript" language="javascript1.2" src="http://weatherreports.com/jscript.html?width=234&height=60&theme=lblue_no_search_box&location=YOURCODE&units= f">
</script>
<div><a href="http://www.weatherreports.com/"><small>Weather Reports</small></a></div>
<if condition="$post['fieldx']">
<script type="text/javascript" language="javascript1.2" src="http://weatherreports.com/jscript.html?width=234&height=60&theme=lblue_no_search_box&location="$post[fieldx]"&units= f">
</script>
<div><a href="http://www.weatherreports.com/"><small>Weather Reports</small></a></div>
</if>