News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

Users Weather on SMF

Started by howlerckc, May 24, 2006, 11:41:11 PM

Previous topic - Next topic

howlerckc

I have created a slight Mod for SMF.  It shows the Users Sky Condition and Temp on all of their posts:

See Example: http://ponziscams.com/smf/index.php/topic,138.msg653.html#msg653

If you look by my name on the post you will see a weather Icon.

If you want one to show for your location is simple, If you live in the U.S. In your profile under location type in your Zipcode.

If you live outside the U.S. Go to http://www.citywx.com Find your location then in the address bar you will see something that looks like this: http://www.citywx.com/hw3.php?config=&config=&forecast=zandh&pands=LATI

What you want is the part after pands=xxxx:  http://www.citywx.com/hw3.php?config=&config=&forecast=zandh&pands=LATI

Type that into your Location and then the Weather for your Area will Show up on all of your Posts.

This is just a little way to join our community a little bit more.  As we see what the weather is in your area of the world.

Thanks, if you need help let me know.


Now for the Code:
Find:
Quote// Is this user allowed to modify this member's karma?
         if ($message['member']['karma']['allow'])
            echo '
                        <a href="', $scripturl, '?action=modifykarma;sa=applaud;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.' . $context['start'], ';m=', $message['id'], '">', $modSettings['karmaApplaudLabel'], '</a>
                        <a href="', $scripturl, '?action=modifykarma;sa=smite;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';m=', $message['id'], '">', $modSettings['karmaSmiteLabel'], '</a><br />';
Paste this afterwards
Quote
// Show the member's custom Weather, If they Filled out Location.
      if (isset($message['member']['location']) && $message['member']['location'] != '')
         echo '
                        <a href="http://www.citywx.com/hw3.php?config=&forecast=zandh&byoaol=pub-9840577626090880&pands=';, $message['member']['location'], '" target="_blank">
<img border="0" src="http://www.citywx.com/hw3.php?forecast=hourly&config=png&alt=tiny&pands=';, $message['member']['location'],  '"></a> <br />';


If you like it please let me know!


Advertisement: