Problem/Motivation

After upgrading to Drupal 10.3.0, the Meta Position module no longer positions the sidebar below the main content while editing a node.

Steps to reproduce

1. Upgrade Drupal to 10.3.0.
2. Edit a node without changing your settings for the Meta Position module.
3. The node's sidebar will no longer be beneath the main content.

Proposed resolution

A patch or new minor release may be needed to address the issue.

Comments

frankangelone created an issue. See original summary.

flocondetoile’s picture

Status: Active » Postponed (maintainer needs more info)

Meta Position doesn't work with a Drupal Core version, but more with an admin theme.

With which admin theme this module "no longer works" ?

frankangelone’s picture

@flocondetoile I'm using the Claro admin theme. On the Drupal 10.3.0 release page under the section, "Theme system and template changes", there are changes posted regarding the Claro theme. I wasn't sure if any of these changes conflict with the Meta Position module.

jayemel’s picture

Same issue here. Meta position "no longer works" with 10.3.0 and the default admin theme Claro. The metadata panel appears in the default position on the right after installing 10.3.0. It was working on 10.2.7.

jayemel’s picture

In the meantime, I fixed this with CSS added to my ckeditor stylesheet. This overrides new classes and styles that were added to Claro with 10.3.0 that break meta position layout. ymmv.

/* Change display from "grid" to "block" to place the metadata panel back under the node edit form */
.node-form .layout-form {
  display: block;
}

/* Set the node edit form to 100% width like it was previously */
.node-form .layout-form .layout-region--main {
  width: 100%;
}
flocondetoile’s picture

Status: Postponed (maintainer needs more info) » Active

  • 6df4f4a8 committed on 8.x-1.x
    Issue #3457409 by flocondetoile: Meta Position No Longer Works On Drupal...
flocondetoile’s picture

Status: Active » Fixed

Fixed. Thanks for reporting.

flocondetoile’s picture

New release published.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.