XML - Cannot move product.info.review after product.info.overviewHow can i rewrite TierPrice Block in...
Has the Isbell–Freyd criterion ever been used to check that a category is concretisable?
Can I become debt free or should I file for bankruptcy? How do I manage my debt and finances?
raspberry pi change directory (cd) command not working with USB drive
How can I mix up weapons for large groups of similar monsters/characters?
Why is working on the same position for more than 15 years not a red flag?
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?
Am I a Rude Number?
If I delete my router's history can my ISP still provide it to my parents?
Proof by Induction - New to proofs
Why do neural networks need so many training examples to perform?
Can the Count of Monte Cristo's calculation of poison dosage be explained?
Auto Insert date into Notepad
Find the number of ways to express 1050 as sum of consecutive integers
Avoiding morning and evening handshakes
Do my Windows system binaries contain sensitive information?
What was the population of late Pre-Islamic Arabia and the population of Arabic speakers before Islam?
"Sheng" as a male given name
What did I do wrong that caused me to lose bitcoin?
Obtaining a matrix of complex values from associations giving the real and imaginary parts of each element?
Crystal compensation for temp and voltage
LTSpice: When running a linear AC simulation, how to view the voltage ratio between two voltages?
I am on the US no-fly list. What can I do in order to be allowed on flights which go through US airspace?
Am I using the wrong word all along?
What to do when being responsible for data protection in your lab, yet advice is ignored?
XML - Cannot move product.info.review after product.info.overview
How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlMove element XML not working (Magento 2)main.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2 : Display Related Products Block in Product Viewedit product view xml to move elementMove upsell after product description using xmlMagento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom Options
I'm trying to do the following, moving product.info.review after product.info.overview (short description) 
I've used the following code, but it is not working:
<move element="product.info.review" destination="content" after="product.info.overview"/>
I've checked if I have the right element by removing it:
<referenceBlock name="product.info.review" remove="true"/>
Above code worked...
Edit for Rakesh:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<block class="MagentoCatalogBlockProductView" name="productpage.image" template="xxx_xxx::productpage.phtml" after="product.info.main"/>
</referenceContainer>
<move element="product.info" destination="content" after="productpage.image"/>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
magento2 layout magento-2.1 xml layout-update
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm trying to do the following, moving product.info.review after product.info.overview (short description) 
I've used the following code, but it is not working:
<move element="product.info.review" destination="content" after="product.info.overview"/>
I've checked if I have the right element by removing it:
<referenceBlock name="product.info.review" remove="true"/>
Above code worked...
Edit for Rakesh:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<block class="MagentoCatalogBlockProductView" name="productpage.image" template="xxx_xxx::productpage.phtml" after="product.info.main"/>
</referenceContainer>
<move element="product.info" destination="content" after="productpage.image"/>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
magento2 layout magento-2.1 xml layout-update
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm trying to do the following, moving product.info.review after product.info.overview (short description) 
I've used the following code, but it is not working:
<move element="product.info.review" destination="content" after="product.info.overview"/>
I've checked if I have the right element by removing it:
<referenceBlock name="product.info.review" remove="true"/>
Above code worked...
Edit for Rakesh:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<block class="MagentoCatalogBlockProductView" name="productpage.image" template="xxx_xxx::productpage.phtml" after="product.info.main"/>
</referenceContainer>
<move element="product.info" destination="content" after="productpage.image"/>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
magento2 layout magento-2.1 xml layout-update
I'm trying to do the following, moving product.info.review after product.info.overview (short description) 
I've used the following code, but it is not working:
<move element="product.info.review" destination="content" after="product.info.overview"/>
I've checked if I have the right element by removing it:
<referenceBlock name="product.info.review" remove="true"/>
Above code worked...
Edit for Rakesh:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<block class="MagentoCatalogBlockProductView" name="productpage.image" template="xxx_xxx::productpage.phtml" after="product.info.main"/>
</referenceContainer>
<move element="product.info" destination="content" after="productpage.image"/>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
magento2 layout magento-2.1 xml layout-update
magento2 layout magento-2.1 xml layout-update
edited Nov 28 '16 at 12:39
Khoa TruongDinh
21.7k64187
21.7k64187
asked Nov 28 '16 at 9:09
Frank GrootFrank Groot
381426
381426
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You have to just keep below line in default.xml file or catalog_product_view.xml file,
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
Clear cache and check.
Thank you for your answer. Removed all files in pub/static, reindexed and cleared cache, but it doesn't work...
– Frank Groot
Nov 28 '16 at 9:34
Have you add above line in default.xml file?
– Rakesh Jesadiya
Nov 28 '16 at 10:13
No, in my own module i've overwritten the catalog_product_view.xml file. The other changes i've made in that file are shown on the frontend.
– Frank Groot
Nov 28 '16 at 10:30
please share your xml code
– Rakesh Jesadiya
Nov 28 '16 at 10:31
See updated question
– Frank Groot
Nov 28 '16 at 10:34
|
show 7 more comments
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%2f147760%2fxml-cannot-move-product-info-review-after-product-info-overview%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
You have to just keep below line in default.xml file or catalog_product_view.xml file,
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
Clear cache and check.
Thank you for your answer. Removed all files in pub/static, reindexed and cleared cache, but it doesn't work...
– Frank Groot
Nov 28 '16 at 9:34
Have you add above line in default.xml file?
– Rakesh Jesadiya
Nov 28 '16 at 10:13
No, in my own module i've overwritten the catalog_product_view.xml file. The other changes i've made in that file are shown on the frontend.
– Frank Groot
Nov 28 '16 at 10:30
please share your xml code
– Rakesh Jesadiya
Nov 28 '16 at 10:31
See updated question
– Frank Groot
Nov 28 '16 at 10:34
|
show 7 more comments
You have to just keep below line in default.xml file or catalog_product_view.xml file,
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
Clear cache and check.
Thank you for your answer. Removed all files in pub/static, reindexed and cleared cache, but it doesn't work...
– Frank Groot
Nov 28 '16 at 9:34
Have you add above line in default.xml file?
– Rakesh Jesadiya
Nov 28 '16 at 10:13
No, in my own module i've overwritten the catalog_product_view.xml file. The other changes i've made in that file are shown on the frontend.
– Frank Groot
Nov 28 '16 at 10:30
please share your xml code
– Rakesh Jesadiya
Nov 28 '16 at 10:31
See updated question
– Frank Groot
Nov 28 '16 at 10:34
|
show 7 more comments
You have to just keep below line in default.xml file or catalog_product_view.xml file,
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
Clear cache and check.
You have to just keep below line in default.xml file or catalog_product_view.xml file,
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.info.review" destination="product.info.main" after="product.info.overview"/>
<referenceBlock name="product.info.stock.sku" remove="true"/>
</body>
</page>
Clear cache and check.
edited Nov 29 '16 at 9:21
answered Nov 28 '16 at 9:22
Rakesh JesadiyaRakesh Jesadiya
29.5k1573120
29.5k1573120
Thank you for your answer. Removed all files in pub/static, reindexed and cleared cache, but it doesn't work...
– Frank Groot
Nov 28 '16 at 9:34
Have you add above line in default.xml file?
– Rakesh Jesadiya
Nov 28 '16 at 10:13
No, in my own module i've overwritten the catalog_product_view.xml file. The other changes i've made in that file are shown on the frontend.
– Frank Groot
Nov 28 '16 at 10:30
please share your xml code
– Rakesh Jesadiya
Nov 28 '16 at 10:31
See updated question
– Frank Groot
Nov 28 '16 at 10:34
|
show 7 more comments
Thank you for your answer. Removed all files in pub/static, reindexed and cleared cache, but it doesn't work...
– Frank Groot
Nov 28 '16 at 9:34
Have you add above line in default.xml file?
– Rakesh Jesadiya
Nov 28 '16 at 10:13
No, in my own module i've overwritten the catalog_product_view.xml file. The other changes i've made in that file are shown on the frontend.
– Frank Groot
Nov 28 '16 at 10:30
please share your xml code
– Rakesh Jesadiya
Nov 28 '16 at 10:31
See updated question
– Frank Groot
Nov 28 '16 at 10:34
Thank you for your answer. Removed all files in pub/static, reindexed and cleared cache, but it doesn't work...
– Frank Groot
Nov 28 '16 at 9:34
Thank you for your answer. Removed all files in pub/static, reindexed and cleared cache, but it doesn't work...
– Frank Groot
Nov 28 '16 at 9:34
Have you add above line in default.xml file?
– Rakesh Jesadiya
Nov 28 '16 at 10:13
Have you add above line in default.xml file?
– Rakesh Jesadiya
Nov 28 '16 at 10:13
No, in my own module i've overwritten the catalog_product_view.xml file. The other changes i've made in that file are shown on the frontend.
– Frank Groot
Nov 28 '16 at 10:30
No, in my own module i've overwritten the catalog_product_view.xml file. The other changes i've made in that file are shown on the frontend.
– Frank Groot
Nov 28 '16 at 10:30
please share your xml code
– Rakesh Jesadiya
Nov 28 '16 at 10:31
please share your xml code
– Rakesh Jesadiya
Nov 28 '16 at 10:31
See updated question
– Frank Groot
Nov 28 '16 at 10:34
See updated question
– Frank Groot
Nov 28 '16 at 10:34
|
show 7 more comments
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%2f147760%2fxml-cannot-move-product-info-review-after-product-info-overview%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