Magento2 Layout – Change Customer Account Page to 3 Columns

layoutmagento2

I have added below code in VendorName/ModuleName/view/frontend/layout/customer_account.xml.

Also tried changing in VendorName/ModuleName/view/frontend/layout/default.xml

But none of these are working.

What could be the issue?

<page layout="3columns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">

Best Answer

In the VendorName/ModuleName/view/frontend/layout/customer_account_index.xml replace the below line:

layout="2columns-left"

to the:

layout="3columns"

Run the Below Command : php bin/magento cache:flush & php bin/magento cache:clean & then Try

Related Topic