• With WP 7.0 an 4.6 of the plugin, the layout of the classic post-box is destroyed, the Copy-Links etc, appear next to the publish button and the publish-button moves out of the box.

    See https://ibb.co/M57RfCJg

    Update: Might also be a problem with the WP-Rocket plugin and the clear cache button.

    • This topic was modified 1 week, 1 day ago by gerobe.
    • This topic was modified 1 week, 1 day ago by gerobe.
    • This topic was modified 1 week, 1 day ago by gerobe.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter gerobe

    (@gerobe)

    After investigating the cause, I found that WordPress 7.0 changed the CSS for #major-publishing-actions from display: block to display: flex with justify-content: space-between. This causes all child elements (#duplicate-action, #rewrite-republish-action, #delete-action, #publishing-action) to be laid out horizontally in a single row.

    The Duplicate Post plugin CSS still assumes the old block layout and does not account for this new flex container.

    Steps to reproduce:

    1. Install WordPress 7.0
    2. Activate Duplicate Post plugin
    3. Open any post in the Classic Editor
    4. Observe the publish metabox — all links and buttons appear on one line

    Workaround:
    Adding the following CSS fixes the layout:

    #major-publishing-actions {
        display: block !important;
    }

    Environment:

    • WordPress 7.0
    • Duplicate Post (latest version)
    • Classic Editor plugin
    Webvriend

    (@webvriend)

    We are encountering the same issue. Could you please resolve this in the plugin so that the editor functions correctly?

    https://ibb.co/JW1L9Khs

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.