tuxlog
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [RetroGeek] Header image cuts off on mobileTo center the menu you have to add the following css
for class main-nav add text-align:center
for <ul id=”menu-testing-menu”> add display:inline-block and text-align:left
This should do the trick.
Forum: Themes and Templates
In reply to: [RetroGeek] Header image cuts off on mobileThank you for this hint. It seems retrogeek pulls full sized image even if on mobile. I will check this and try to fix it as soon as possible.
Meanwhile please try to change in header.php:
if ( has_custom_logo() ) { $rg_custom_logo_id = get_theme_mod( 'custom_logo' ); $rg_image = wp_get_attachment_image_src( $rg_custom_logo_id, 'full' ); echo '<img src=' . esc_url( $rg_image[0] ) . ' class="custom-logo" alt="' . esc_attr( get_bloginfo( 'name' ) ) . '">';Try to change ‘full’ to either ‘large’ or ‘medium’ and see if it works on mobile please.
Forum: Plugins
In reply to: [wp-forecast] Lat/Lon in the shortcode?Hello,
wp-forecast does not support giving lat and lon without any other parameters to the widget. But you can define many locations giving the Weatherprovider, caching interval and a lot of display features as a location setup. This location can be displayed by calling php or shortcode with the widget id.
What is your idea behind giving lat and lon? Maybe I have another idea to get there.
Forum: Plugins
In reply to: [wp-forecast] No Data DisplayedIt turns out that the wrong location code was the problem. By selecting a correct location using the small magnifying class the problem was solved.
Forum: Plugins
In reply to: [wp-forecast] No Data DisplayedThanks, I just sent you an email, it seems you have an invalid location code. Please select the location again and save it.
Forum: Plugins
In reply to: [wp-forecast] No Data DisplayedHello Alex,
can you post your config please (of course not the API key, if you use one), so I can try to rebuild the problem.
Thanks.
Forum: Plugins
In reply to: [wp-forecast] No Data DisplayedI just saw you were unsatisfied with my time of response to your message. I am sorry, I have to work during the week and only can look after this when I have sparetime.
Forum: Plugins
In reply to: [wp-forecast] No Data DisplayedHello Jimmy,
can you please post the settings you used, so I can try to find out what the problem is. Thanks.
Forum: Plugins
In reply to: [wp-forecast] Cannot connect Open-MeteoHello,
this is an error message from curl which means your SSL certificate is expired. Please chekc your SSL certificate or ask your provider to renew it.
Forum: Plugins
In reply to: [wp-forecast] Error with widget displayGreat to hear it works. 🙂
The SSL problem should not appear on a live site. I only have seen this on local installations. You should never disable SSL on a live site.
Forum: Plugins
In reply to: [wp-forecast] Error with widget displayIf you are on a local installation this is a known ‘feature’ of WordPress and has nothing to do with the plugin to fix disable SSL verification within your testing site.
You can do this by adding this line into the file
Appearance > Theme Editor > functions.php or
/wp-content/themes/YOUR_THEME/functions.php:
add_filter('https_ssl_verify', '__return_false');Only add this on a testing site, never on a live site.
Forum: Plugins
In reply to: [wp-forecast] Error with widget displayXou can share screenshots as a link using a service like https://paste.pics .
Anyway you can copy and paste the output of the connectiontest, it is just a text field.
Forum: Plugins
In reply to: [wp-forecast] Error with widget displayHello darrjess,
you do not need an API key for Openmeteo, it’s totally open and free.
Can you send the results of the connection tests.
Most users just click on the search icon search for the location and save it and it works. Can you give the coordinates you entered please, maybe you used another format as returned by the search dialog.
Thanks.
Forum: Plugins
In reply to: [wp-forecast] No OpenMeteo data available still presentSometimes the external requests to the weatherdataprovider is blocked by a security plugin. Maybe you want to check this.
Can you post the results of the connection test and maybe a screenshot of your settings please. So I can try the same settings on my sites.
Forum: Plugins
In reply to: [wp-forecast] No OpenMeteo data available still presentHi,
yes, this could be a problem since the step from 5.x to 9.x maybe too big.
The wp-forecast entries in the wp-option table are:
wp-forecast-opts%
wp-forecast-cache%
wp-forecast-expire%
wp-forecast-timeout
wp-forecast-count
wp-forecast-delopt
wp-forecast-pre-transport
wp-forecast-wp-transportThe first three are there for every location therefore I added an % as SQL wildcard.
If you delete all of them a fresh install shoudl be possible.