Tiered pricing based on total quantity purchased
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am selling note cards, and there is no price difference between any of them, the same pricing structure applies to all.
What I would like to do is calculate a total based on the total quantity of cards rather than individual cards.
So, a set of 3 cards = $15
regardless of which 3 is selected. Right now, my Paypal cart only allows me to have 3 cards of the same kind. Can I do what I want with Magento? And, what is the pricing structure for Magento?
Is it a stand alone program or can I integrate with my current site? See http://www.miriweiblefineart.com/notecards to see the site.
magento2 magento-1 discount promotions tierprice
add a comment |
I am selling note cards, and there is no price difference between any of them, the same pricing structure applies to all.
What I would like to do is calculate a total based on the total quantity of cards rather than individual cards.
So, a set of 3 cards = $15
regardless of which 3 is selected. Right now, my Paypal cart only allows me to have 3 cards of the same kind. Can I do what I want with Magento? And, what is the pricing structure for Magento?
Is it a stand alone program or can I integrate with my current site? See http://www.miriweiblefineart.com/notecards to see the site.
magento2 magento-1 discount promotions tierprice
add a comment |
I am selling note cards, and there is no price difference between any of them, the same pricing structure applies to all.
What I would like to do is calculate a total based on the total quantity of cards rather than individual cards.
So, a set of 3 cards = $15
regardless of which 3 is selected. Right now, my Paypal cart only allows me to have 3 cards of the same kind. Can I do what I want with Magento? And, what is the pricing structure for Magento?
Is it a stand alone program or can I integrate with my current site? See http://www.miriweiblefineart.com/notecards to see the site.
magento2 magento-1 discount promotions tierprice
I am selling note cards, and there is no price difference between any of them, the same pricing structure applies to all.
What I would like to do is calculate a total based on the total quantity of cards rather than individual cards.
So, a set of 3 cards = $15
regardless of which 3 is selected. Right now, my Paypal cart only allows me to have 3 cards of the same kind. Can I do what I want with Magento? And, what is the pricing structure for Magento?
Is it a stand alone program or can I integrate with my current site? See http://www.miriweiblefineart.com/notecards to see the site.
magento2 magento-1 discount promotions tierprice
magento2 magento-1 discount promotions tierprice
edited 28 mins ago
Magedev2301
1159
1159
asked Oct 16 '17 at 22:25
DennisDennis
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The short answer to whether Magento can do this is yes, with Shopping Cart Price Rules. There are probably other ways of doing it, like using different Product Types and Tier Pricing or by using Catalog Price Rules, but the simplest way would probably be to do the following:
Go to Magento
Admin->Promotions->Shopping Cart Price Rules->
and clickAdd New Rule
Add the required information under
Rule Information
.Under
Actions->Apply the rule only to cart items matching....
, click the plus sign to add a condition and in the first dropdown, selectQuantity in cart
, in the second dropdown, selectequals or greater than
and in the last text-box, enter 3.Under
Actions
, changeDiscount Amount
to16.666667
and clickSave
.
The result will be that any products will go from $6/each to $5/each whenever the cart has 3 or more items in it.
The answer to whether it can be added to your existing site is a little more complicated, but I would say no. Mostly because going through the trouble of creating a Magento instance just to provide that functionality, then customizing both your site and the Magento instance to work with each other is probably more trouble than it is worth. While you could use them separately, I would recommend moving the entire site to Magento, and I think the result would be a far more robust site that makes both you and your customers much happier.
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%2f197506%2ftiered-pricing-based-on-total-quantity-purchased%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
The short answer to whether Magento can do this is yes, with Shopping Cart Price Rules. There are probably other ways of doing it, like using different Product Types and Tier Pricing or by using Catalog Price Rules, but the simplest way would probably be to do the following:
Go to Magento
Admin->Promotions->Shopping Cart Price Rules->
and clickAdd New Rule
Add the required information under
Rule Information
.Under
Actions->Apply the rule only to cart items matching....
, click the plus sign to add a condition and in the first dropdown, selectQuantity in cart
, in the second dropdown, selectequals or greater than
and in the last text-box, enter 3.Under
Actions
, changeDiscount Amount
to16.666667
and clickSave
.
The result will be that any products will go from $6/each to $5/each whenever the cart has 3 or more items in it.
The answer to whether it can be added to your existing site is a little more complicated, but I would say no. Mostly because going through the trouble of creating a Magento instance just to provide that functionality, then customizing both your site and the Magento instance to work with each other is probably more trouble than it is worth. While you could use them separately, I would recommend moving the entire site to Magento, and I think the result would be a far more robust site that makes both you and your customers much happier.
add a comment |
The short answer to whether Magento can do this is yes, with Shopping Cart Price Rules. There are probably other ways of doing it, like using different Product Types and Tier Pricing or by using Catalog Price Rules, but the simplest way would probably be to do the following:
Go to Magento
Admin->Promotions->Shopping Cart Price Rules->
and clickAdd New Rule
Add the required information under
Rule Information
.Under
Actions->Apply the rule only to cart items matching....
, click the plus sign to add a condition and in the first dropdown, selectQuantity in cart
, in the second dropdown, selectequals or greater than
and in the last text-box, enter 3.Under
Actions
, changeDiscount Amount
to16.666667
and clickSave
.
The result will be that any products will go from $6/each to $5/each whenever the cart has 3 or more items in it.
The answer to whether it can be added to your existing site is a little more complicated, but I would say no. Mostly because going through the trouble of creating a Magento instance just to provide that functionality, then customizing both your site and the Magento instance to work with each other is probably more trouble than it is worth. While you could use them separately, I would recommend moving the entire site to Magento, and I think the result would be a far more robust site that makes both you and your customers much happier.
add a comment |
The short answer to whether Magento can do this is yes, with Shopping Cart Price Rules. There are probably other ways of doing it, like using different Product Types and Tier Pricing or by using Catalog Price Rules, but the simplest way would probably be to do the following:
Go to Magento
Admin->Promotions->Shopping Cart Price Rules->
and clickAdd New Rule
Add the required information under
Rule Information
.Under
Actions->Apply the rule only to cart items matching....
, click the plus sign to add a condition and in the first dropdown, selectQuantity in cart
, in the second dropdown, selectequals or greater than
and in the last text-box, enter 3.Under
Actions
, changeDiscount Amount
to16.666667
and clickSave
.
The result will be that any products will go from $6/each to $5/each whenever the cart has 3 or more items in it.
The answer to whether it can be added to your existing site is a little more complicated, but I would say no. Mostly because going through the trouble of creating a Magento instance just to provide that functionality, then customizing both your site and the Magento instance to work with each other is probably more trouble than it is worth. While you could use them separately, I would recommend moving the entire site to Magento, and I think the result would be a far more robust site that makes both you and your customers much happier.
The short answer to whether Magento can do this is yes, with Shopping Cart Price Rules. There are probably other ways of doing it, like using different Product Types and Tier Pricing or by using Catalog Price Rules, but the simplest way would probably be to do the following:
Go to Magento
Admin->Promotions->Shopping Cart Price Rules->
and clickAdd New Rule
Add the required information under
Rule Information
.Under
Actions->Apply the rule only to cart items matching....
, click the plus sign to add a condition and in the first dropdown, selectQuantity in cart
, in the second dropdown, selectequals or greater than
and in the last text-box, enter 3.Under
Actions
, changeDiscount Amount
to16.666667
and clickSave
.
The result will be that any products will go from $6/each to $5/each whenever the cart has 3 or more items in it.
The answer to whether it can be added to your existing site is a little more complicated, but I would say no. Mostly because going through the trouble of creating a Magento instance just to provide that functionality, then customizing both your site and the Magento instance to work with each other is probably more trouble than it is worth. While you could use them separately, I would recommend moving the entire site to Magento, and I think the result would be a far more robust site that makes both you and your customers much happier.
answered May 14 '18 at 15:04
mtr.webmtr.web
766516
766516
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%2f197506%2ftiered-pricing-based-on-total-quantity-purchased%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