Disable Recently Ordered / Reorder Block in Magento 2
How can i disable Recently order or Reorder block in magento 2?
In css i can hide the block "block block-reorder" by display:none;
But I want to fully disable it.
magento2
add a comment |
How can i disable Recently order or Reorder block in magento 2?
In css i can hide the block "block block-reorder" by display:none;
But I want to fully disable it.
magento2
magento.stackexchange.com/questions/85743/…
– Ankit Shah
Feb 23 '17 at 1:27
it's for magento 1., i'm looking for magento 2.
– Fancyman
Feb 23 '17 at 1:59
It will be same for magento 2 as well
– Ankit Shah
Feb 23 '17 at 2:03
add a comment |
How can i disable Recently order or Reorder block in magento 2?
In css i can hide the block "block block-reorder" by display:none;
But I want to fully disable it.
magento2
How can i disable Recently order or Reorder block in magento 2?
In css i can hide the block "block block-reorder" by display:none;
But I want to fully disable it.
magento2
magento2
edited 1 hour ago
Teja Bhagavan Kollepara
2,95841847
2,95841847
asked Feb 23 '17 at 1:04
FancymanFancyman
142314
142314
magento.stackexchange.com/questions/85743/…
– Ankit Shah
Feb 23 '17 at 1:27
it's for magento 1., i'm looking for magento 2.
– Fancyman
Feb 23 '17 at 1:59
It will be same for magento 2 as well
– Ankit Shah
Feb 23 '17 at 2:03
add a comment |
magento.stackexchange.com/questions/85743/…
– Ankit Shah
Feb 23 '17 at 1:27
it's for magento 1., i'm looking for magento 2.
– Fancyman
Feb 23 '17 at 1:59
It will be same for magento 2 as well
– Ankit Shah
Feb 23 '17 at 2:03
magento.stackexchange.com/questions/85743/…
– Ankit Shah
Feb 23 '17 at 1:27
magento.stackexchange.com/questions/85743/…
– Ankit Shah
Feb 23 '17 at 1:27
it's for magento 1., i'm looking for magento 2.
– Fancyman
Feb 23 '17 at 1:59
it's for magento 1., i'm looking for magento 2.
– Fancyman
Feb 23 '17 at 1:59
It will be same for magento 2 as well
– Ankit Shah
Feb 23 '17 at 2:03
It will be same for magento 2 as well
– Ankit Shah
Feb 23 '17 at 2:03
add a comment |
3 Answers
3
active
oldest
votes
Create default.xml in your module or theme's view/layout folder and paste the 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>
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</body>
</page>
add a comment |
You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="sidebar.additional">
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</referenceContainer>
</body>
</page>
1
Actually only<referenceBlock name="sale.reorder.sidebar" remove="true"/>
is needed.
– pinicio
Mar 12 '18 at 17:31
add a comment |
Refer below steps to enable or disable customer reorder in Magento 2
- On the Admin panel, click
Stores
. In theSettings
section, selectConfiguration
. - Select
Sales
underSales
in the panel on the left - Open the
Reorder
section - In the
Allow Reorder
field, select Yes to allow reorders and select No to disable reorders. - When complete, click
Save
.
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%2f161392%2fdisable-recently-ordered-reorder-block-in-magento-2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Create default.xml in your module or theme's view/layout folder and paste the 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>
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</body>
</page>
add a comment |
Create default.xml in your module or theme's view/layout folder and paste the 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>
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</body>
</page>
add a comment |
Create default.xml in your module or theme's view/layout folder and paste the 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>
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</body>
</page>
Create default.xml in your module or theme's view/layout folder and paste the 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>
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</body>
</page>
answered Aug 30 '17 at 12:42
Qasim Ali SaeedQasim Ali Saeed
17016
17016
add a comment |
add a comment |
You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="sidebar.additional">
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</referenceContainer>
</body>
</page>
1
Actually only<referenceBlock name="sale.reorder.sidebar" remove="true"/>
is needed.
– pinicio
Mar 12 '18 at 17:31
add a comment |
You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="sidebar.additional">
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</referenceContainer>
</body>
</page>
1
Actually only<referenceBlock name="sale.reorder.sidebar" remove="true"/>
is needed.
– pinicio
Mar 12 '18 at 17:31
add a comment |
You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="sidebar.additional">
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</referenceContainer>
</body>
</page>
You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="sidebar.additional">
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</referenceContainer>
</body>
</page>
answered Feb 23 '17 at 2:19
amanaman
70835
70835
1
Actually only<referenceBlock name="sale.reorder.sidebar" remove="true"/>
is needed.
– pinicio
Mar 12 '18 at 17:31
add a comment |
1
Actually only<referenceBlock name="sale.reorder.sidebar" remove="true"/>
is needed.
– pinicio
Mar 12 '18 at 17:31
1
1
Actually only
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
is needed.– pinicio
Mar 12 '18 at 17:31
Actually only
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
is needed.– pinicio
Mar 12 '18 at 17:31
add a comment |
Refer below steps to enable or disable customer reorder in Magento 2
- On the Admin panel, click
Stores
. In theSettings
section, selectConfiguration
. - Select
Sales
underSales
in the panel on the left - Open the
Reorder
section - In the
Allow Reorder
field, select Yes to allow reorders and select No to disable reorders. - When complete, click
Save
.
add a comment |
Refer below steps to enable or disable customer reorder in Magento 2
- On the Admin panel, click
Stores
. In theSettings
section, selectConfiguration
. - Select
Sales
underSales
in the panel on the left - Open the
Reorder
section - In the
Allow Reorder
field, select Yes to allow reorders and select No to disable reorders. - When complete, click
Save
.
add a comment |
Refer below steps to enable or disable customer reorder in Magento 2
- On the Admin panel, click
Stores
. In theSettings
section, selectConfiguration
. - Select
Sales
underSales
in the panel on the left - Open the
Reorder
section - In the
Allow Reorder
field, select Yes to allow reorders and select No to disable reorders. - When complete, click
Save
.
Refer below steps to enable or disable customer reorder in Magento 2
- On the Admin panel, click
Stores
. In theSettings
section, selectConfiguration
. - Select
Sales
underSales
in the panel on the left - Open the
Reorder
section - In the
Allow Reorder
field, select Yes to allow reorders and select No to disable reorders. - When complete, click
Save
.
answered Dec 19 '18 at 10:43
Ashish ViradiyaAshish Viradiya
774822
774822
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%2f161392%2fdisable-recently-ordered-reorder-block-in-magento-2%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
magento.stackexchange.com/questions/85743/…
– Ankit Shah
Feb 23 '17 at 1:27
it's for magento 1., i'm looking for magento 2.
– Fancyman
Feb 23 '17 at 1:59
It will be same for magento 2 as well
– Ankit Shah
Feb 23 '17 at 2:03