Add additional tab after reviews Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How to make RWD “Reviews” link open “Reviews” tab?cannot add additional tab for popular Tag to product viewHow can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlMagento 2: How to move additional product attributes to Details tab?main.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Add tab in magento2?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom Options
How do Java 8 default methods hеlp with lambdas?
Short story about astronauts fertilizing soil with their own bodies
Marquee sign letters
Weaponising the Grasp-at-a-Distance spell
How do you cope with tons of web fonts when copying and pasting from web pages?
Russian equivalents of おしゃれは足元から (Every good outfit starts with the shoes)
Noise in Eigenvalues plot
Pointing to problems without suggesting solutions
Why do C and C++ allow the expression (int) + 4*5;
Why complex landing gears are used instead of simple, reliable and light weight muscle wire or shape memory alloys?
Vertical ranges of Column Plots in 12
Can two people see the same photon?
Improvising over quartal voicings
How can I prevent/balance waiting and turtling as a response to cooldown mechanics
Plotting a Maclaurin series
calculator's angle answer for trig ratios that can work in more than 1 quadrant on the unit circle
Does the main washing effect of soap come from foam?
Flight departed from the gate 5 min before scheduled departure time. Refund options
Where and when has Thucydides been studied?
Did any compiler fully use 80-bit floating point?
The test team as an enemy of development? And how can this be avoided?
Inverse square law not accurate for non-point masses?
Understanding piped commands in GNU/Linux
malloc in main() or malloc in another function: allocating memory for a struct and its members
Add additional tab after reviews
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?How to make RWD “Reviews” link open “Reviews” tab?cannot add additional tab for popular Tag to product viewHow can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlMagento 2: How to move additional product attributes to Details tab?main.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Add tab in magento2?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 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;
I am trying to have a few more additional tabs added after the Reviews tab, though my tab keeps appearing as the first tab
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab" as="postage" template="product/view/postage.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
magento2 product layout tabs design
add a comment |
I am trying to have a few more additional tabs added after the Reviews tab, though my tab keeps appearing as the first tab
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab" as="postage" template="product/view/postage.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
magento2 product layout tabs design
Hello @Paul, You can useafter
andbefore
tag to adjust position of tab
– Pawan
Apr 18 at 2:00
add a comment |
I am trying to have a few more additional tabs added after the Reviews tab, though my tab keeps appearing as the first tab
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab" as="postage" template="product/view/postage.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
magento2 product layout tabs design
I am trying to have a few more additional tabs added after the Reviews tab, though my tab keeps appearing as the first tab
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab" as="postage" template="product/view/postage.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
magento2 product layout tabs design
magento2 product layout tabs design
edited Apr 17 at 14:58
Paul 'Whippet' McGuane
asked Apr 17 at 13:24
Paul 'Whippet' McGuanePaul 'Whippet' McGuane
1539
1539
Hello @Paul, You can useafter
andbefore
tag to adjust position of tab
– Pawan
Apr 18 at 2:00
add a comment |
Hello @Paul, You can useafter
andbefore
tag to adjust position of tab
– Pawan
Apr 18 at 2:00
Hello @Paul, You can use
after
and before
tag to adjust position of tab– Pawan
Apr 18 at 2:00
Hello @Paul, You can use
after
and before
tag to adjust position of tab– Pawan
Apr 18 at 2:00
add a comment |
1 Answer
1
active
oldest
votes
Check it, if it solves your problem
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab1" as="postage1"
template="[Vendor]_[Module]::postage1.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage1</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab2" as="postage2"
template="[Vendor]_[Module]::postage2.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage2</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab3" as="postage3"
template="[Vendor]_[Module]::postage3.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage3</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
this still seems to make it the first tab
– Paul 'Whippet' McGuane
Apr 17 at 13:59
tabs are displayed after review tab
– abdus
Apr 17 at 14:54
see above with the image
– Paul 'Whippet' McGuane
Apr 17 at 14:59
which theme and magento version you are using
– abdus
Apr 17 at 15:07
1
you can set priority or sort on tabs to change their position<argument name="priority" xsi:type="string">50</argument>
– abdus
Apr 17 at 15:28
|
show 3 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%2f270508%2fadd-additional-tab-after-reviews%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
Check it, if it solves your problem
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab1" as="postage1"
template="[Vendor]_[Module]::postage1.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage1</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab2" as="postage2"
template="[Vendor]_[Module]::postage2.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage2</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab3" as="postage3"
template="[Vendor]_[Module]::postage3.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage3</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
this still seems to make it the first tab
– Paul 'Whippet' McGuane
Apr 17 at 13:59
tabs are displayed after review tab
– abdus
Apr 17 at 14:54
see above with the image
– Paul 'Whippet' McGuane
Apr 17 at 14:59
which theme and magento version you are using
– abdus
Apr 17 at 15:07
1
you can set priority or sort on tabs to change their position<argument name="priority" xsi:type="string">50</argument>
– abdus
Apr 17 at 15:28
|
show 3 more comments
Check it, if it solves your problem
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab1" as="postage1"
template="[Vendor]_[Module]::postage1.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage1</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab2" as="postage2"
template="[Vendor]_[Module]::postage2.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage2</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab3" as="postage3"
template="[Vendor]_[Module]::postage3.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage3</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
this still seems to make it the first tab
– Paul 'Whippet' McGuane
Apr 17 at 13:59
tabs are displayed after review tab
– abdus
Apr 17 at 14:54
see above with the image
– Paul 'Whippet' McGuane
Apr 17 at 14:59
which theme and magento version you are using
– abdus
Apr 17 at 15:07
1
you can set priority or sort on tabs to change their position<argument name="priority" xsi:type="string">50</argument>
– abdus
Apr 17 at 15:28
|
show 3 more comments
Check it, if it solves your problem
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab1" as="postage1"
template="[Vendor]_[Module]::postage1.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage1</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab2" as="postage2"
template="[Vendor]_[Module]::postage2.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage2</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab3" as="postage3"
template="[Vendor]_[Module]::postage3.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage3</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
Check it, if it solves your problem
<?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>
<referenceBlock name="product.info.details">
<block class="MagentoCatalogBlockProductView" name="postage.tab1" as="postage1"
template="[Vendor]_[Module]::postage1.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage1</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab2" as="postage2"
template="[Vendor]_[Module]::postage2.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage2</argument>
</arguments>
</block>
<block class="MagentoCatalogBlockProductView" name="postage.tab3" as="postage3"
template="[Vendor]_[Module]::postage3.phtml" group="detailed_info" >
<arguments>
<argument translate="true" name="title" xsi:type="string">Postage3</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
answered Apr 17 at 13:42
abdusabdus
3729
3729
this still seems to make it the first tab
– Paul 'Whippet' McGuane
Apr 17 at 13:59
tabs are displayed after review tab
– abdus
Apr 17 at 14:54
see above with the image
– Paul 'Whippet' McGuane
Apr 17 at 14:59
which theme and magento version you are using
– abdus
Apr 17 at 15:07
1
you can set priority or sort on tabs to change their position<argument name="priority" xsi:type="string">50</argument>
– abdus
Apr 17 at 15:28
|
show 3 more comments
this still seems to make it the first tab
– Paul 'Whippet' McGuane
Apr 17 at 13:59
tabs are displayed after review tab
– abdus
Apr 17 at 14:54
see above with the image
– Paul 'Whippet' McGuane
Apr 17 at 14:59
which theme and magento version you are using
– abdus
Apr 17 at 15:07
1
you can set priority or sort on tabs to change their position<argument name="priority" xsi:type="string">50</argument>
– abdus
Apr 17 at 15:28
this still seems to make it the first tab
– Paul 'Whippet' McGuane
Apr 17 at 13:59
this still seems to make it the first tab
– Paul 'Whippet' McGuane
Apr 17 at 13:59
tabs are displayed after review tab
– abdus
Apr 17 at 14:54
tabs are displayed after review tab
– abdus
Apr 17 at 14:54
see above with the image
– Paul 'Whippet' McGuane
Apr 17 at 14:59
see above with the image
– Paul 'Whippet' McGuane
Apr 17 at 14:59
which theme and magento version you are using
– abdus
Apr 17 at 15:07
which theme and magento version you are using
– abdus
Apr 17 at 15:07
1
1
you can set priority or sort on tabs to change their position
<argument name="priority" xsi:type="string">50</argument>
– abdus
Apr 17 at 15:28
you can set priority or sort on tabs to change their position
<argument name="priority" xsi:type="string">50</argument>
– abdus
Apr 17 at 15:28
|
show 3 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%2f270508%2fadd-additional-tab-after-reviews%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
Hello @Paul, You can use
after
andbefore
tag to adjust position of tab– Pawan
Apr 18 at 2:00