Move additional attributes below short descriptionShort description not updatingHow can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlMove short description below page product detail title via XMLmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.1: Add Custom Upload file attribute in CheckoutMagento 2.2.5: Overriding Admin Controller sales/orderMove Customizable Options below product descriptionMagento 2.2.5: Add, Update and Delete existing products Custom Options

Went to a big 4 but got fired for underperformance in a year recently - Now every one thinks I'm pro - How to balance expectations?

Gold Battle KoTH

If I buy and download a game through second Nintendo account do I own it on my main account too?

How did Biff return to 2015 from 1955 without a lightning strike?

The grades of the students in a class

Is there anyway to harden soft braised carrots?

Error with uppercase in titlesec's label field

May a hotel provide accommodation for fewer people than booked?

Best Ergonomic Design for a handheld ranged weapon

Why did the United States not resort to nuclear weapons in Vietnam?

"Will flex for food". What does this phrase mean?

How does Asimov's second law deal with contradictory orders from different people?

How is Sword Coast North governed?

Why are prop blades not shaped like household fan blades?

What is my clock telling me to do?

How do I respond appropriately to an overseas company that obtained a visa for me without hiring me?

How do discovery writers hibernate?

Password management for kids - what's a good way to start?

Buying resources from your neighbor

How to prevent a single-element caster from being useless against immune foes?

Python π = 1 + (1/2) + (1/3) + (1/4) - (1/5) + (1/6) + (1/7) + (1/8) + (1/9) - (1/10) ...1748 Euler

How do Canadians get a visa to go to Saudi Arabia?

A game of red and black

Should students have access to past exams or an exam bank?



Move additional attributes below short description


Short description not updatingHow can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlMove short description below page product detail title via XMLmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.1: Add Custom Upload file attribute in CheckoutMagento 2.2.5: Overriding Admin Controller sales/orderMove Customizable Options below product descriptionMagento 2.2.5: Add, Update and Delete existing products Custom Options






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I want to move additional infos below short description.
I found this:



<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="product.info" />
<move element="product.info.overview" destination="page.main.title" />
</body>
</page>


which works fine in "catalog_product-view.xml, but sets additional infos below cart button.
What is the right way, to solve this?










share|improve this question


























  • what kind of additional infos ? can you explain more ?

    – user4536
    Jul 23 at 10:27

















1















I want to move additional infos below short description.
I found this:



<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="product.info" />
<move element="product.info.overview" destination="page.main.title" />
</body>
</page>


which works fine in "catalog_product-view.xml, but sets additional infos below cart button.
What is the right way, to solve this?










share|improve this question


























  • what kind of additional infos ? can you explain more ?

    – user4536
    Jul 23 at 10:27













1












1








1








I want to move additional infos below short description.
I found this:



<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="product.info" />
<move element="product.info.overview" destination="page.main.title" />
</body>
</page>


which works fine in "catalog_product-view.xml, but sets additional infos below cart button.
What is the right way, to solve this?










share|improve this question
















I want to move additional infos below short description.
I found this:



<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="product.info" />
<move element="product.info.overview" destination="page.main.title" />
</body>
</page>


which works fine in "catalog_product-view.xml, but sets additional infos below cart button.
What is the right way, to solve this?







magento2 layout attributes






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 23 at 10:45









Smita Kagwade

48114 bronze badges




48114 bronze badges










asked Jul 23 at 10:20









BingoBingo

164 bronze badges




164 bronze badges















  • what kind of additional infos ? can you explain more ?

    – user4536
    Jul 23 at 10:27

















  • what kind of additional infos ? can you explain more ?

    – user4536
    Jul 23 at 10:27
















what kind of additional infos ? can you explain more ?

– user4536
Jul 23 at 10:27





what kind of additional infos ? can you explain more ?

– user4536
Jul 23 at 10:27










2 Answers
2






active

oldest

votes


















1














Option 1: Create catalog_product_view.xml in your theme Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout



And paste below code.



<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>
</body>
</page>


Option 2: If you have existing theme then add just below mentioned code inside <body> of Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout/catalog_product_view.xml



<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>


enter image description here






share|improve this answer



























  • THX for your answer.

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago


















0














As per question request after the overview (short description) need to load other product attribute data.



in magento product.info.overview block is responsible to load short description (overview).



so for example moving sku attribute section after overview.



create a xml file catalog_product_view.xml in your theme at app/design/frontend/[NAMESPACE]/[THEME]/Magento_Catalog/layout/catalog_product_view.xml if not exist (




if you using luma copy catalog_product_view.xml file in Magento_Catalog will be exist




else copy the content from parent theme or from Magento_Catalog module).



add below line (best place is to add move tab before body close tag to avoid any issue)



<move element="product.info.stock.sku" destination="product.info.main" after="product.info.overview"/>


you can change product.info.stock.sku to your require attribute.



hope it will work for you as it tested.






share|improve this answer



























  • THX for your answer.

    – Bingo
    2 days ago











  • @Bingo, if it help and solve your concern then please it as valid answer. so in future others can also use as a reference. :)

    – Kanhaiya lal
    2 days ago











  • @ Kanhaiya lal How can I tag this as valid answer?

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago











  • @Bingo as per your asked question, i answered, any way no issue hope you got your output as per your need, but for future if you have any query, please mention everything in question so no one can misunderstood.

    – Kanhaiya lal
    2 days ago













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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f282988%2fmove-additional-attributes-below-short-description%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Option 1: Create catalog_product_view.xml in your theme Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout



And paste below code.



<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>
</body>
</page>


Option 2: If you have existing theme then add just below mentioned code inside <body> of Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout/catalog_product_view.xml



<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>


enter image description here






share|improve this answer



























  • THX for your answer.

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago















1














Option 1: Create catalog_product_view.xml in your theme Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout



And paste below code.



<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>
</body>
</page>


Option 2: If you have existing theme then add just below mentioned code inside <body> of Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout/catalog_product_view.xml



<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>


enter image description here






share|improve this answer



























  • THX for your answer.

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago













1












1








1







Option 1: Create catalog_product_view.xml in your theme Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout



And paste below code.



<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>
</body>
</page>


Option 2: If you have existing theme then add just below mentioned code inside <body> of Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout/catalog_product_view.xml



<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>


enter image description here






share|improve this answer















Option 1: Create catalog_product_view.xml in your theme Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout



And paste below code.



<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>
</body>
</page>


Option 2: If you have existing theme then add just below mentioned code inside <body> of Magento_Root/app/design/frontend/Yourtheme/Magento_Catalog/layout/catalog_product_view.xml



<move element="product.attributes" destination="product.info.main" after="container_product_primary_1"/>


enter image description here







share|improve this answer














share|improve this answer



share|improve this answer








edited Jul 23 at 10:49









Amit Bera

62.7k16 gold badges84 silver badges183 bronze badges




62.7k16 gold badges84 silver badges183 bronze badges










answered Jul 23 at 10:48









Aman AlamAman Alam

9676 silver badges19 bronze badges




9676 silver badges19 bronze badges















  • THX for your answer.

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago

















  • THX for your answer.

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago
















THX for your answer.

– Bingo
2 days ago





THX for your answer.

– Bingo
2 days ago













The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

– Bingo
2 days ago





The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

– Bingo
2 days ago













0














As per question request after the overview (short description) need to load other product attribute data.



in magento product.info.overview block is responsible to load short description (overview).



so for example moving sku attribute section after overview.



create a xml file catalog_product_view.xml in your theme at app/design/frontend/[NAMESPACE]/[THEME]/Magento_Catalog/layout/catalog_product_view.xml if not exist (




if you using luma copy catalog_product_view.xml file in Magento_Catalog will be exist




else copy the content from parent theme or from Magento_Catalog module).



add below line (best place is to add move tab before body close tag to avoid any issue)



<move element="product.info.stock.sku" destination="product.info.main" after="product.info.overview"/>


you can change product.info.stock.sku to your require attribute.



hope it will work for you as it tested.






share|improve this answer



























  • THX for your answer.

    – Bingo
    2 days ago











  • @Bingo, if it help and solve your concern then please it as valid answer. so in future others can also use as a reference. :)

    – Kanhaiya lal
    2 days ago











  • @ Kanhaiya lal How can I tag this as valid answer?

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago











  • @Bingo as per your asked question, i answered, any way no issue hope you got your output as per your need, but for future if you have any query, please mention everything in question so no one can misunderstood.

    – Kanhaiya lal
    2 days ago















0














As per question request after the overview (short description) need to load other product attribute data.



in magento product.info.overview block is responsible to load short description (overview).



so for example moving sku attribute section after overview.



create a xml file catalog_product_view.xml in your theme at app/design/frontend/[NAMESPACE]/[THEME]/Magento_Catalog/layout/catalog_product_view.xml if not exist (




if you using luma copy catalog_product_view.xml file in Magento_Catalog will be exist




else copy the content from parent theme or from Magento_Catalog module).



add below line (best place is to add move tab before body close tag to avoid any issue)



<move element="product.info.stock.sku" destination="product.info.main" after="product.info.overview"/>


you can change product.info.stock.sku to your require attribute.



hope it will work for you as it tested.






share|improve this answer



























  • THX for your answer.

    – Bingo
    2 days ago











  • @Bingo, if it help and solve your concern then please it as valid answer. so in future others can also use as a reference. :)

    – Kanhaiya lal
    2 days ago











  • @ Kanhaiya lal How can I tag this as valid answer?

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago











  • @Bingo as per your asked question, i answered, any way no issue hope you got your output as per your need, but for future if you have any query, please mention everything in question so no one can misunderstood.

    – Kanhaiya lal
    2 days ago













0












0








0







As per question request after the overview (short description) need to load other product attribute data.



in magento product.info.overview block is responsible to load short description (overview).



so for example moving sku attribute section after overview.



create a xml file catalog_product_view.xml in your theme at app/design/frontend/[NAMESPACE]/[THEME]/Magento_Catalog/layout/catalog_product_view.xml if not exist (




if you using luma copy catalog_product_view.xml file in Magento_Catalog will be exist




else copy the content from parent theme or from Magento_Catalog module).



add below line (best place is to add move tab before body close tag to avoid any issue)



<move element="product.info.stock.sku" destination="product.info.main" after="product.info.overview"/>


you can change product.info.stock.sku to your require attribute.



hope it will work for you as it tested.






share|improve this answer















As per question request after the overview (short description) need to load other product attribute data.



in magento product.info.overview block is responsible to load short description (overview).



so for example moving sku attribute section after overview.



create a xml file catalog_product_view.xml in your theme at app/design/frontend/[NAMESPACE]/[THEME]/Magento_Catalog/layout/catalog_product_view.xml if not exist (




if you using luma copy catalog_product_view.xml file in Magento_Catalog will be exist




else copy the content from parent theme or from Magento_Catalog module).



add below line (best place is to add move tab before body close tag to avoid any issue)



<move element="product.info.stock.sku" destination="product.info.main" after="product.info.overview"/>


you can change product.info.stock.sku to your require attribute.



hope it will work for you as it tested.







share|improve this answer














share|improve this answer



share|improve this answer








edited Jul 23 at 12:17

























answered Jul 23 at 11:17









Kanhaiya lalKanhaiya lal

1,1935 silver badges20 bronze badges




1,1935 silver badges20 bronze badges















  • THX for your answer.

    – Bingo
    2 days ago











  • @Bingo, if it help and solve your concern then please it as valid answer. so in future others can also use as a reference. :)

    – Kanhaiya lal
    2 days ago











  • @ Kanhaiya lal How can I tag this as valid answer?

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago











  • @Bingo as per your asked question, i answered, any way no issue hope you got your output as per your need, but for future if you have any query, please mention everything in question so no one can misunderstood.

    – Kanhaiya lal
    2 days ago

















  • THX for your answer.

    – Bingo
    2 days ago











  • @Bingo, if it help and solve your concern then please it as valid answer. so in future others can also use as a reference. :)

    – Kanhaiya lal
    2 days ago











  • @ Kanhaiya lal How can I tag this as valid answer?

    – Bingo
    2 days ago











  • The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

    – Bingo
    2 days ago











  • @Bingo as per your asked question, i answered, any way no issue hope you got your output as per your need, but for future if you have any query, please mention everything in question so no one can misunderstood.

    – Kanhaiya lal
    2 days ago
















THX for your answer.

– Bingo
2 days ago





THX for your answer.

– Bingo
2 days ago













@Bingo, if it help and solve your concern then please it as valid answer. so in future others can also use as a reference. :)

– Kanhaiya lal
2 days ago





@Bingo, if it help and solve your concern then please it as valid answer. so in future others can also use as a reference. :)

– Kanhaiya lal
2 days ago













@ Kanhaiya lal How can I tag this as valid answer?

– Bingo
2 days ago





@ Kanhaiya lal How can I tag this as valid answer?

– Bingo
2 days ago













The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

– Bingo
2 days ago





The description of my concern was misunderstanding. Sorry for that! I want to replace short description with long description and add short description below title. And then additional info below the long description. Please see here: link

– Bingo
2 days ago













@Bingo as per your asked question, i answered, any way no issue hope you got your output as per your need, but for future if you have any query, please mention everything in question so no one can misunderstood.

– Kanhaiya lal
2 days ago





@Bingo as per your asked question, i answered, any way no issue hope you got your output as per your need, but for future if you have any query, please mention everything in question so no one can misunderstood.

– Kanhaiya lal
2 days ago

















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f282988%2fmove-additional-attributes-below-short-description%23new-answer', 'question_page');

);

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







Popular posts from this blog

Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form