Magento 2: What is the main difference between the Page Layout and Page Configuration layout types?Magento2:...
How to remove blank page before my new report chapter?
How to say "Brexit" in Latin?
What is the purpose of easy combat scenarios that don't need resource expenditure?
What is 6÷2×(1+2) =?
Can a person refuse a presidential pardon?
Highly technological aliens land nuclear fusion powered ships in medieval city and slaughter everyone, using swords?
Eww, those bytes are gross
Program that converts a number to a letter of the alphabet
Publishing research using outdated methods
If I delete my router's history can my ISP still provide it to my parents?
Can an insurance company drop you after receiving a bill and refusing to pay?
Why do neural networks need so many training examples to perform?
Why zero tolerance on nudity in space?
Strange Sign on Lab Door
What are "industrial chops"?
Why do members of Congress in committee hearings ask witnesses the same question multiple times?
Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?
How do you funnel food off a cutting board?
Explain the objections to these measures against human trafficking
Blindfold battle as a gladiatorial spectacle - what are the tactics and communication methods?
Can making a creature unable to attack after it has been assigned as an attacker remove it from combat?
Am I a Rude Number?
Is a debit card dangerous in my situation?
Why has the mole been redefined for 2019?
Magento 2: What is the main difference between the Page Layout and Page Configuration layout types?
Magento2: what is the difference between referenceContainer and referenceBlockWhat is the difference between Magento CE 2.1.4 and 2.1.5?What is the difference between Product ID and SKU?Magento2: What is the difference between referenceContainer and reference?Magento2: what is the difference between layout and page_layout?What is the difference between base_grand_total and base_total_invoiced?Difference between the API interfaces in Api and Api/data folders?Magento2 What is the difference between uiCollection and uiComponentDifference between Extend a layout and Override layoutWhat is the difference between base_grand_total and grand_total?
What is the main difference between the Page Layout and Page Configuration layout types?
magento2
add a comment |
What is the main difference between the Page Layout and Page Configuration layout types?
magento2
Did you check devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/…?
– Sohel Rana
37 mins ago
add a comment |
What is the main difference between the Page Layout and Page Configuration layout types?
magento2
What is the main difference between the Page Layout and Page Configuration layout types?
magento2
magento2
asked 40 mins ago
MukeshMukesh
304
304
Did you check devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/…?
– Sohel Rana
37 mins ago
add a comment |
Did you check devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/…?
– Sohel Rana
37 mins ago
Did you check devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/…?
– Sohel Rana
37 mins ago
Did you check devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/…?
– Sohel Rana
37 mins ago
add a comment |
1 Answer
1
active
oldest
votes
Page layout: an XML file declaring a page wireframe inside the <body> section of the HTML page markup, for example, two-column page layout.
These will be in <module_dir>/view/frontend/page_layout or <theme_dir>/<Namespace>_<Module>/page_layout
Page configuration layout: an XML file declaring detailed structure, contents and meta-information of a page (includes the <html>, <head>, and <body> sections of the HTML page markup).
These will be in <module_dir>/view/frontend/layout or <theme_dir>/<Namespace>_<Module>/layout
Go through https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html for more details.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f264017%2fmagento-2-what-is-the-main-difference-between-the-page-layout-and-page-configur%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Page layout: an XML file declaring a page wireframe inside the <body> section of the HTML page markup, for example, two-column page layout.
These will be in <module_dir>/view/frontend/page_layout or <theme_dir>/<Namespace>_<Module>/page_layout
Page configuration layout: an XML file declaring detailed structure, contents and meta-information of a page (includes the <html>, <head>, and <body> sections of the HTML page markup).
These will be in <module_dir>/view/frontend/layout or <theme_dir>/<Namespace>_<Module>/layout
Go through https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html for more details.
add a comment |
Page layout: an XML file declaring a page wireframe inside the <body> section of the HTML page markup, for example, two-column page layout.
These will be in <module_dir>/view/frontend/page_layout or <theme_dir>/<Namespace>_<Module>/page_layout
Page configuration layout: an XML file declaring detailed structure, contents and meta-information of a page (includes the <html>, <head>, and <body> sections of the HTML page markup).
These will be in <module_dir>/view/frontend/layout or <theme_dir>/<Namespace>_<Module>/layout
Go through https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html for more details.
add a comment |
Page layout: an XML file declaring a page wireframe inside the <body> section of the HTML page markup, for example, two-column page layout.
These will be in <module_dir>/view/frontend/page_layout or <theme_dir>/<Namespace>_<Module>/page_layout
Page configuration layout: an XML file declaring detailed structure, contents and meta-information of a page (includes the <html>, <head>, and <body> sections of the HTML page markup).
These will be in <module_dir>/view/frontend/layout or <theme_dir>/<Namespace>_<Module>/layout
Go through https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html for more details.
Page layout: an XML file declaring a page wireframe inside the <body> section of the HTML page markup, for example, two-column page layout.
These will be in <module_dir>/view/frontend/page_layout or <theme_dir>/<Namespace>_<Module>/page_layout
Page configuration layout: an XML file declaring detailed structure, contents and meta-information of a page (includes the <html>, <head>, and <body> sections of the HTML page markup).
These will be in <module_dir>/view/frontend/layout or <theme_dir>/<Namespace>_<Module>/layout
Go through https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/layout-overview.html for more details.
edited 20 mins ago
answered 31 mins ago
Anshu MishraAnshu Mishra
5,37752660
5,37752660
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f264017%2fmagento-2-what-is-the-main-difference-between-the-page-layout-and-page-configur%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you check devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/…?
– Sohel Rana
37 mins ago