cliff
3/1/2017 - 6:42 PM

For https://wordpress.org/support/topic/hourly-weather/ -- what it looks like without this gist's style.css: before: https://cl.ly/3x402Z0X2

For https://wordpress.org/support/topic/hourly-weather/ -- what it looks like without this gist's style.css: before: https://cl.ly/3x402Z0X2r2m, after: https://cl.ly/0s2x323N453O -- and comparing to Google's results: https://cl.ly/3H421m1R2S29

Since the API requires one call per each day you're wanting data for, we would have to use 10 API calls (via 10 separate shortcodes).

We'd also need to determine which hour of the day we'd like to return for each day. Here's an example for the Empire State Building from March 1-March 10, 2017, at 8am each day:

<h2>Forecast from March 1-10:</h2>

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-01T08:00:00-05:00" end_time="2017-03-01T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-02T08:00:00-05:00" end_time="2017-03-02T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-03T08:00:00-05:00" end_time="2017-03-03T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-04T08:00:00-05:00" end_time="2017-03-04T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-05T08:00:00-05:00" end_time="2017-03-05T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-06T08:00:00-05:00" end_time="2017-03-06T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-07T08:00:00-05:00" end_time="2017-03-07T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-08T08:00:00-05:00" end_time="2017-03-08T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-09T08:00:00-05:00" end_time="2017-03-09T08:01:00-05:00" darksky_credit_link_off="true"]

[tk_event_weather location="350 5th Ave, New York, NY 10118" start_time="2017-03-10T08:00:00-05:00" end_time="2017-03-10T08:01:00-05:00"]
/* will need to replace 240 with your Page ID */

body.page-id-240 .tk-event-weather__wrapper {
	display: inline-block;
	vertical-align: top;
	margin: 0 auto;
}

body.page-id-240 .template-hourly_horizontal__time {
	display: none;
}

body.page-id-240 .template-hourly_horizontal__index-2 {
	display: none;
}