We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0e825d commit f127615Copy full SHA for f127615
app/code/Magento/PageBuilder/Plugin/Result/Page.php
@@ -23,7 +23,9 @@ public function beforeRenderResult(
23
ResponseInterface $response
24
) : array {
25
// Apply the updated layout handles classes to the body when using our full width variants
26
- if ($subject->getConfig()->getPageLayout() == 'product-full-width') {
+ if ($subject->getConfig()->getPageLayout() == 'product-full-width'
27
+ || $subject->getConfig()->getPageLayout() == 'cms-full-width'
28
+ ) {
29
$subject->getConfig()->addBodyClass('page-layout-1column');
30
}
31
if ($subject->getConfig()->getPageLayout() == 'category-full-width') {
0 commit comments