Forum Replies Created
-
AuthorPosts
-
Danke @Guenni007! Genau das wollte ich (und wie cool, dass es so einfach ist). Super!
Now I have completed the update… still the same problem.
I use the “Logo center, Menu below” and this code to hide the logo:
div#header_main > .container {
display: none;
}
.html_header_top.html_header_sticky.html_large.html_bottom_nav_header #main {
padding-top: 37px;
}Hello,
I’ve tried many of the codes I found here, but nothing worked. My problem is that my menu is hidden on mobile device. Here is the link to the homepage. I want to see the menu on mobile, too. Is there a way to see it?
Thanks a lot.Der Beitrag ist zwar schon etwas älter aber ich hatte heute das gleiche Problem und hab eine Lösung gefunden. Wenn man in der “Farb-Sektion” ein Section-Background-Bild einfügt, ist bei “ANZEIGE-EINSTELLUNGEN FÜR ANHÄNGE” standardmäßig “Mittel” ausgewählt und das Bild wird entsprechend runtergerechnet. Wenn man dann allerdings “Strech to fit” auswählt, wird es einfach nur groß gezogen und ist dem entsprechend unscharf. Wenn man bei der Anzeige-Einstellung aber “Vollständige Größe” auswählt, werden die Bilder in der entsprechenden Qualität angezeigt und sind scharf.
April 30, 2016 at 1:54 pm in reply to: Passwort für geschützte Seiten nicht im Cache speichern #625007Ich hab es gefunden:
https://www.dietmarjanowski.de/wordpress/?p=13883Man muss folgenden Code in die functions.php des aktuellen Themes hinzufügen:
add_action( ‘wp’, ‘post_pw_sess_expire’ );
function post_pw_sess_expire() {
if ( isset( $_COOKIE[‘wp-postpass_’ . COOKIEHASH] ) )
// Setting a time of 0 in setcookie() forces the cookie to expire with the session
setcookie(‘wp-postpass_’ . COOKIEHASH, ”, 0, COOKIEPATH);
}Damit erstellt man ein Timeout für passwortgeschützte Seiten. Wird die Seite neu geladen oder geschlossen, muss man beim nächsten Aufruf das Passwort erneut eingeben.
NACHTEIL: Dieser Code muss nach jedem Update oder bei dem Wechsel des Themes neu hinzugefügt werden.
April 30, 2016 at 1:34 pm in reply to: Passwort für geschützte Seiten nicht im Cache speichern #625001Wo könnte ich das denn in der aktuellen Version ändern (auch auf die Gefahr hin, dass ich das jedes mal wieder neu machen muss)?
April 30, 2016 at 11:50 am in reply to: Passwort für geschützte Seiten nicht im Cache speichern #624936Hey Kriesi,
danke für die schnelle Antwort.
Es muss allerdings eine Code-Lösung geben, weil ich die früher schon einmal gefunden hatte. Ich habe den Link, den ich mir damals gespeichert hatte, leider nicht mehr. Aber damals hatte ich es geschafft, dass man Passwort wieder neu eingeben musste, wenn man die Seite neu geladen hatte. Vielleicht hilft dieser Auszug aus einem Forum, um das Anliegen zu verdeutlichen (ich finde allerdings nicht, wo ich das so ändern kann):Find your wp-pass.php file in the WordPress root install folder. Download and save a copy. Then edit it and look for the following line of code:
setcookie(‘wp-postpass_’ . COOKIEHASH, $_POST[‘post_password’], time() + 864000, COOKIEPATH);
Change the 10 day cookie timeout of “864000” (number of seconds) to something like “60”.
Upload and overwrite the existing wp-pass.php file (again make sure you have a backup of the original just in case).
Reset the passwords on your protected pages to clear any existing cookies and the new timeout should be in effect.Danke, hat super geklappt.
Hab gesehen, dass man es auch bei Enfold –> Blog Layout –> Blog Post Allowed HTML Tags ausstellen kann aber so ist es wahrscheinlich noch möglich sie zu verwenden ohne dass es extra angezeigt wird.
Danke!
Lg -
AuthorPosts