danthefan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Biligual website approachwell, what you need are 2 versions of your website, one for each language. A plugin will do that for you. You can try to roll your own solution, but I think the Plugins did already solve your Problem and they are battle tested.
Forum: Fixing WordPress
In reply to: How to modify Header padding CSSclass_name_of_your_element
was jsut an example….I looked into your Website. To make the big white space on top disappear you need this CSS Snippet:
.header-homepage { padding: 0; }
put it in your custom css.
Then start learning basic CSS.
Forum: Fixing WordPress
In reply to: How to modify Header padding CSS.class_name_of_your_element { padding-top: 10px; padding-bottom: 10px; }
Forum: Fixing WordPress
In reply to: Biligual website approachTry a plugin like polylang or wpml (the two I know, but there are more) , they help in building a Multi Language wordpress site.
Forum: Fixing WordPress
In reply to: White page when opening site without wwwSo maybe you should contact your provider’s support.
If it was a WordPress issue, I am quite sure it would not have the strange behavior that it works on reload.Forum: Fixing WordPress
In reply to: Sponsored/nofollow in relThe order doesn’t matter.
Forum: Fixing WordPress
In reply to: Website down and unable to access wp adminYour theme’s functions.php.
I’d rather not change the plugin code.You a?so should check, what that function is doing, maby it was meamt to override aspects of the plugin.
Example:
function very_importan_func($some_variable) { //code that does impressive things }
To make the above function not interfere with anything, you can for example rename it, so “very_importan_func” becomes “other_name”.
Or delete the whole thing.- This reply was modified 3 years, 4 months ago by danthefan.
Forum: Fixing WordPress
In reply to: White page when opening site without wwwI don’t know what this directadmin does.
Maybe if you select “no redirection”?
Some providers configure their servers to point to the same dir by default, regardless if you write www. or not.Forum: Fixing WordPress
In reply to: White page when opening site without wwwHow do you do the redirect?
Forum: Everything else WordPress
In reply to: Is WordPress used in germany?Yes, it is. A lot.
Forum: Fixing WordPress
In reply to: How does WordPress Lazy Load images?It’s handled by the browser. See:
Lazy-loading images by @malchata and @rachelandrew https://web.dev/lazy-loading-images/#images-inline-browser-level
Forum: Fixing WordPress
In reply to: Website down and unable to access wp adminFind the
simple_bootstrap_display_post_meta()
function in your themes’ functions.php file, and remove it.
The error message is quite clear.Thank you, that was the hint I needed, indeed we have a WP Multisite, I had to activate it in the Network Settings.
Closing..
Forum: Fixing WordPress
In reply to: Formulareintr?ge werden nicht als Menüpunkt angezeigtDas ost wohl eher eine Frage für den Elementor support.
Forum: Fixing WordPress
In reply to: home page changeYou might have been hacked.
There is evil code which redirects your visitors randomly.
I have seen this before.Read this: