Simple Weather Widget

I am trying to convert degrees C to F in the simple weather widget and I can’t find where the code is for it. I go into manage custom widgets and open the code. See below. I know I should use [%.2f °F] but not sure where to add it. I am using the weather underground binding because of the amount of data that it has

Yes… I will need this eventually myself. I have a Personal Weather Station that reports to Weather Underground. I’ll want to pull weather data from it to OH and I want the temp in fahrenheit. Hopefully this is possible.

You would typically set that in the item you are trying to display…

Number WUTemperature "Current temperature [%.1f °F]" <temperature> {channel="weatherunderground:weather:SGP:current#temperature"}

Squid

Would it be set somewhere in the picture above? This is the section for editing the code under managing custom widget

degC to degF:

{{(itemValue(config.temperature) * 9 / 5 + 32) | number: 0 }}