Magento 2 - Change maximum order amount
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I tried to check out the items in the cart that have more than 100.000.000 amount total.
And when I opened the View and Edit Cart, the checkout and multishipping checkout button disappeared because of the total value more than 100.000.000.
How can I change the maximum order amount so I can still check out even the total is more than 100.000.000?
magento2 checkout cart
add a comment |
I tried to check out the items in the cart that have more than 100.000.000 amount total.
And when I opened the View and Edit Cart, the checkout and multishipping checkout button disappeared because of the total value more than 100.000.000.
How can I change the maximum order amount so I can still check out even the total is more than 100.000.000?
magento2 checkout cart
add a comment |
I tried to check out the items in the cart that have more than 100.000.000 amount total.
And when I opened the View and Edit Cart, the checkout and multishipping checkout button disappeared because of the total value more than 100.000.000.
How can I change the maximum order amount so I can still check out even the total is more than 100.000.000?
magento2 checkout cart
I tried to check out the items in the cart that have more than 100.000.000 amount total.
And when I opened the View and Edit Cart, the checkout and multishipping checkout button disappeared because of the total value more than 100.000.000.
How can I change the maximum order amount so I can still check out even the total is more than 100.000.000?
magento2 checkout cart
magento2 checkout cart
edited Apr 2 '18 at 11:13
Dhaduk Mitesh
669218
669218
asked Apr 2 '18 at 9:44
Edwin WidhiyantoEdwin Widhiyanto
432522
432522
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
This article may help you to maximize the order amount
http://blog.scuti.asia/2016/02/magento2-how-to-increase-maximum-price.html
The main idea of this blog that you need to alter some tables to modify the columns to be able to allow more than 100 millions.
even modify the table structure is not recommended but sometimes you don't have choice to do this.
a backup is highly required before doing such this actions
i already follow that instruction too, but it's still no use. But, i already change the max order to more than 1 million amount with change all the decimal(12,4) attribute to decimal(14,2) attribute, but the problem is, the checkout and multiple checkout button is not appear.
– Edwin Widhiyanto
Apr 19 '18 at 1:53
add a comment |
I found the solution, first modify these tables columns :
- value column in table: catalog_product_entity_decimal
- price column in table:catalog_product_index_price
- price column in table:catalog_product_index_price_tmp
- price column in table:catalog_product_index_price_final_tmp
And then change the MAXIMUM_AVAILABLE_NUMBER in /quote/model/QuoteValidator.php
to 9999999999, and we could do checkout more than 1 million amount.
Source : Here
add a comment |
This is worked for me. But no error message shows. It just hide the "Go to Checkout" button. So customers cannot identify, what is the issue.
Any idea to showing the error message?
New contributor
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%2f220706%2fmagento-2-change-maximum-order-amount%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
This article may help you to maximize the order amount
http://blog.scuti.asia/2016/02/magento2-how-to-increase-maximum-price.html
The main idea of this blog that you need to alter some tables to modify the columns to be able to allow more than 100 millions.
even modify the table structure is not recommended but sometimes you don't have choice to do this.
a backup is highly required before doing such this actions
i already follow that instruction too, but it's still no use. But, i already change the max order to more than 1 million amount with change all the decimal(12,4) attribute to decimal(14,2) attribute, but the problem is, the checkout and multiple checkout button is not appear.
– Edwin Widhiyanto
Apr 19 '18 at 1:53
add a comment |
This article may help you to maximize the order amount
http://blog.scuti.asia/2016/02/magento2-how-to-increase-maximum-price.html
The main idea of this blog that you need to alter some tables to modify the columns to be able to allow more than 100 millions.
even modify the table structure is not recommended but sometimes you don't have choice to do this.
a backup is highly required before doing such this actions
i already follow that instruction too, but it's still no use. But, i already change the max order to more than 1 million amount with change all the decimal(12,4) attribute to decimal(14,2) attribute, but the problem is, the checkout and multiple checkout button is not appear.
– Edwin Widhiyanto
Apr 19 '18 at 1:53
add a comment |
This article may help you to maximize the order amount
http://blog.scuti.asia/2016/02/magento2-how-to-increase-maximum-price.html
The main idea of this blog that you need to alter some tables to modify the columns to be able to allow more than 100 millions.
even modify the table structure is not recommended but sometimes you don't have choice to do this.
a backup is highly required before doing such this actions
This article may help you to maximize the order amount
http://blog.scuti.asia/2016/02/magento2-how-to-increase-maximum-price.html
The main idea of this blog that you need to alter some tables to modify the columns to be able to allow more than 100 millions.
even modify the table structure is not recommended but sometimes you don't have choice to do this.
a backup is highly required before doing such this actions
answered Apr 18 '18 at 22:14
WISAM HAKIMWISAM HAKIM
1,623618
1,623618
i already follow that instruction too, but it's still no use. But, i already change the max order to more than 1 million amount with change all the decimal(12,4) attribute to decimal(14,2) attribute, but the problem is, the checkout and multiple checkout button is not appear.
– Edwin Widhiyanto
Apr 19 '18 at 1:53
add a comment |
i already follow that instruction too, but it's still no use. But, i already change the max order to more than 1 million amount with change all the decimal(12,4) attribute to decimal(14,2) attribute, but the problem is, the checkout and multiple checkout button is not appear.
– Edwin Widhiyanto
Apr 19 '18 at 1:53
i already follow that instruction too, but it's still no use. But, i already change the max order to more than 1 million amount with change all the decimal(12,4) attribute to decimal(14,2) attribute, but the problem is, the checkout and multiple checkout button is not appear.
– Edwin Widhiyanto
Apr 19 '18 at 1:53
i already follow that instruction too, but it's still no use. But, i already change the max order to more than 1 million amount with change all the decimal(12,4) attribute to decimal(14,2) attribute, but the problem is, the checkout and multiple checkout button is not appear.
– Edwin Widhiyanto
Apr 19 '18 at 1:53
add a comment |
I found the solution, first modify these tables columns :
- value column in table: catalog_product_entity_decimal
- price column in table:catalog_product_index_price
- price column in table:catalog_product_index_price_tmp
- price column in table:catalog_product_index_price_final_tmp
And then change the MAXIMUM_AVAILABLE_NUMBER in /quote/model/QuoteValidator.php
to 9999999999, and we could do checkout more than 1 million amount.
Source : Here
add a comment |
I found the solution, first modify these tables columns :
- value column in table: catalog_product_entity_decimal
- price column in table:catalog_product_index_price
- price column in table:catalog_product_index_price_tmp
- price column in table:catalog_product_index_price_final_tmp
And then change the MAXIMUM_AVAILABLE_NUMBER in /quote/model/QuoteValidator.php
to 9999999999, and we could do checkout more than 1 million amount.
Source : Here
add a comment |
I found the solution, first modify these tables columns :
- value column in table: catalog_product_entity_decimal
- price column in table:catalog_product_index_price
- price column in table:catalog_product_index_price_tmp
- price column in table:catalog_product_index_price_final_tmp
And then change the MAXIMUM_AVAILABLE_NUMBER in /quote/model/QuoteValidator.php
to 9999999999, and we could do checkout more than 1 million amount.
Source : Here
I found the solution, first modify these tables columns :
- value column in table: catalog_product_entity_decimal
- price column in table:catalog_product_index_price
- price column in table:catalog_product_index_price_tmp
- price column in table:catalog_product_index_price_final_tmp
And then change the MAXIMUM_AVAILABLE_NUMBER in /quote/model/QuoteValidator.php
to 9999999999, and we could do checkout more than 1 million amount.
Source : Here
answered Apr 24 '18 at 4:26
Edwin WidhiyantoEdwin Widhiyanto
432522
432522
add a comment |
add a comment |
This is worked for me. But no error message shows. It just hide the "Go to Checkout" button. So customers cannot identify, what is the issue.
Any idea to showing the error message?
New contributor
add a comment |
This is worked for me. But no error message shows. It just hide the "Go to Checkout" button. So customers cannot identify, what is the issue.
Any idea to showing the error message?
New contributor
add a comment |
This is worked for me. But no error message shows. It just hide the "Go to Checkout" button. So customers cannot identify, what is the issue.
Any idea to showing the error message?
New contributor
This is worked for me. But no error message shows. It just hide the "Go to Checkout" button. So customers cannot identify, what is the issue.
Any idea to showing the error message?
New contributor
New contributor
answered 1 min ago
Sreerag ASSreerag AS
1
1
New contributor
New contributor
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%2f220706%2fmagento-2-change-maximum-order-amount%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