Just a couple of probably very quick-n-simple queries regarding the default weather module
Firstly, current weather does not show location yet it’s all in the code
{
module: 'weather',
header: 'Current weather for: ',
position: 'top_right',
config: {
type: 'current',
location: 'My_Place',
locationID: '1234567', //ID from https://www.openweathermap.org
apiKey: '####################'
}
},
Next, forecast does show location, but how do I remove the “,GB” part of the location?
(And I’ll do the same for current weather too.)
{
module: 'weather',
position: 'top_right',
header: 'Weather Forecast for: ',
config: {
type: 'forecast',
location: 'My_Place',
locationID: '1234567', //ID from https://www.openweathermap.org
apiKey: '####################'
}
},
Thank you.