threadi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: pdf viewer werkt niet meer op de mobileIs it about displaying a PDF within a web page? Normally you rather link the PDFs and leave it to the visitor with which PDF application he wants to display the file.
If you have problems with PDF viewer, I would recommend to contact their support forum: https://wordpress.org/support/plugin/pdf-viewer/
Forum: Fixing WordPress
In reply to: Admin-panel on top of site -> 500 Internal server errorThe reason for the error should be visible in the error log. You can find it in your hosting area. If necessary, the support of your hosting can help you.
Alternatively, you could also enable debugging in WordPress. How to do this is described here: https://wordpress.org/support/article/debugging-in-wordpress/ – also here the support of your hosting can help you if necessary to edit the file accordingly.
In both cases you should be able to see what the cause is in the logfile. Often it is a plugin. You can delete the directory of the guilty plugin via FTP. After that you should be able to access it again.
Forum: Fixing WordPress
In reply to: How to update “Total installation size” in Site Health?You are welcome to leave your request as a ticket in Core Trac so that the developers can evaluate it: https://core.trac.wordpress.org
Forum: Fixing WordPress
In reply to: Cannot edit Social Network icons’ linksThe icons seem to be in a menu, which is placed in a widget in the footer. Look under Appeareance > Widgets for the section for the footer. There you should see an associated menu. If you have its name, go to Appeareance > Menu and look at its configuration there. I suspect a plugin is integrating itself here to enable the icon integration.
Forum: Everything else WordPress
In reply to: Savoy Theme Padding in Categories ElementorI don’t see padding there in that sense, but a minimum height for the content area. That should be the reason for the spacing. Since you are using an optimization pluing I can’t see the origin of this setting more precisely. Moreover, you are using a commercial theme for which no questions should be asked here in the forum. So please try to contact the theme developer.
Forum: Everything else WordPress
In reply to: Enforce strong password requirementTry this plugin: https://wordpress.org/plugins/password-policy-manager/
Forum: Fixing WordPress
In reply to: How to update “Total installation size” in Site Health?Yes, good find. How you could use the function depends on when you want to clear this cache to load this always live. E.g. via init hook on every page load, or admin_init in the backend.
Or you return an empty value when reading the transient value. This causes then really ALWAYS if this is queried the re-reading of all values:
function custom_rest_dirsize_cache() { return []; } add_filter( 'transient_dirsize_cache', 'custom_rest_dirsize_cache', 10, 0);
Untested, but roughly this might be enough …
Forum: Everything else WordPress
In reply to: Force pdf-file to not open in browserA web page cannot determine in which application a file is opened. The way to force a download is the only thing you can influence. Everything behind that is no longer in browser hands.
Forum: Fixing WordPress
In reply to: Add a back buttonSo you want the visitor to go to page A, from there to page B, click on the button on page B and thus come to page A which is automatically reloaded?
The background color is set by the Blocksy Companion Pro plugin you are using. You can overload this via
body .ct-language-switcher[data-type="dropdown"] ul { background-color: red; }
Or contact the support of your commercial plugin: https://creativethemes.com/blocksy/support/
Forum: Fixing WordPress
In reply to: Site identity logo will not resizeI see that you have already contacted the theme developer about this: https://wordpress.org/support/theme/natural-lite/
They should actually provide a suitable solution for this. A quick solution could be:
@media screen and (max-width: 760px) { .custom-logo { width: auto; max-width: 100%; height: auto; } }
You should add this under Appeareance > Customizer > Additional CSS.
Forum: Fixing WordPress
In reply to: Still showing old snippetYou have an optimization and cache plugin running with Litespeed. Empty its cache or deactivate it completely. If this solves the problem, you should contact their support to prevent further problems: https://wordpress.org/support/plugin/litespeed-cache/
Log in to your hosting via FTP and remove the plugin directory from the last installed plugin. Your hoster’s support can help you with this. The directory should be located at wp-content/plugins/jonradio-private-site/. If this solves the error, you can decide to contact the developer of the plugin before you install it again (here: https://wordpress.org/support/plugin/jonradio-private-site/) or find an alternative for you.
Forum: Developing with WordPress
In reply to: Skip to content link is not working properlyYou can do without the JavaScript from the article. Because this sets the link target incorrectly and it is actually only intended for older browsers that no longer exist today. Just set the link via HTML to #main-content, design the link as you want and make sure that the ID main-content exists on your site.
Forum: Installing WordPress
In reply to: Error 500 during wordpress installationThe reason for the error should be visible in the error log. You can find it in your hosting area. If necessary, the support of your hosting can help you.