Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1203697

    Ich komme leider überhaupt nicht mit dem Layout Architekten zurecht https://youtu.be/ibNt9OlRJ_U. Vielleicht ist dies für den ein oder anderen hilfreich: Man kann das Menü im WP Admin fixieren, so dass auch Inhaltselemente in Layoutelemente gezogen werden können, die sich weiter unterhalb befinden, was vorher nicht möglich war: https://youtu.be/AnWeMQexPMU

    Lösung hierzu: Im Child (!) Theme in der funktions.php den folgenden Code einfügen

    add_action(‘admin_head’, ‘custom_layout_architect’);

    function custom_layout_architect() {
    echo ‘<style>
    .shortcode_button_wrap {
    display: block;
    position: fixed;
    top: 100px;
    z-index: 5000;
    }
    </style>’;
    }

    JETZT kann ich endlich vernünftig arbeiten… :)

    #1204308

    Hey webministerin,

    Thanks for sharing your solution, it’s much appreciated :-)

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.