How to set promo can be used x times for each day in Magento 2? The Next CEO of Stack Overflowhow to set a price rule for two specific individual products in magentoHow to use custom price attributes in shopping cart price rule, replacing the regular price?Display customer attribute in promotions pageIn Magento 2, how to create promo rule for buy one get one in backend for specific custom attribute?Current customer cart prices does not update after catalog price rules are inactiveHow to Set Shipping Cart Price Rule for shipping according to product sizePromo rules not applied when using custom attribute in conditionMagento 2 : Automatic Discount For First 100 CustomersMagento2: How to set a “deal of the day” for a configurable productMagento 2: How to get discount price for each cart rule in quote
Why is there a PLL in CPU?
Robert Sheckley short story about vacation spots being overwhelmed
How to safely derail a train during transit?
Implement the Thanos sorting algorithm
Can a single photon have an energy density?
Where to find order of arguments for default functions
How easy is it to start Magic from scratch?
Why does C# sound extremely flat when saxophone is tuned to G?
What does "Its cash flow is deeply negative" mean?
Whats the best way to handle refactoring a big file?
Can the Reverse Gravity spell affect the Meteor Swarm spell?
Failed to fetch jessie backports repository
Inappropriate reference requests from Journal reviewers
Only print output after finding pattern
Text adventure game code
How does practicing restraint and performing actions of merit purify the mind?
Anatomically Correct Mesopelagic Aves
What happens if you roll doubles 3 times then land on "Go to jail?"
India just shot down a satellite from the ground. At what altitude range is the resulting debris field?
If I blow insulation everywhere in my attic except the door trap, will heat escape through it?
Does the Brexit deal have to be agreed by both Houses?
Unreliable Magic - Is it worth it?
What can we do to stop prior company from asking us questions?
Is HostGator storing my password in plaintext?
How to set promo can be used x times for each day in Magento 2?
The Next CEO of Stack Overflowhow to set a price rule for two specific individual products in magentoHow to use custom price attributes in shopping cart price rule, replacing the regular price?Display customer attribute in promotions pageIn Magento 2, how to create promo rule for buy one get one in backend for specific custom attribute?Current customer cart prices does not update after catalog price rules are inactiveHow to Set Shipping Cart Price Rule for shipping according to product sizePromo rules not applied when using custom attribute in conditionMagento 2 : Automatic Discount For First 100 CustomersMagento2: How to set a “deal of the day” for a configurable productMagento 2: How to get discount price for each cart rule in quote
Can i set cart price rule for customer that goes with condition like this:
- Each customer can only use this promo x times for each day
magento2 shopping-cart-price-rules
add a comment |
Can i set cart price rule for customer that goes with condition like this:
- Each customer can only use this promo x times for each day
magento2 shopping-cart-price-rules
It is possible but you want to buy extension or create custom module for that
– Kamlesh Solanki
yesterday
@KamleshSolanki custom module
– blue
yesterday
add a comment |
Can i set cart price rule for customer that goes with condition like this:
- Each customer can only use this promo x times for each day
magento2 shopping-cart-price-rules
Can i set cart price rule for customer that goes with condition like this:
- Each customer can only use this promo x times for each day
magento2 shopping-cart-price-rules
magento2 shopping-cart-price-rules
edited yesterday
blue
asked yesterday
blueblue
2007
2007
It is possible but you want to buy extension or create custom module for that
– Kamlesh Solanki
yesterday
@KamleshSolanki custom module
– blue
yesterday
add a comment |
It is possible but you want to buy extension or create custom module for that
– Kamlesh Solanki
yesterday
@KamleshSolanki custom module
– blue
yesterday
It is possible but you want to buy extension or create custom module for that
– Kamlesh Solanki
yesterday
It is possible but you want to buy extension or create custom module for that
– Kamlesh Solanki
yesterday
@KamleshSolanki custom module
– blue
yesterday
@KamleshSolanki custom module
– blue
yesterday
add a comment |
1 Answer
1
active
oldest
votes
It is possible but you want to buy extension
or create custom module
Override the functionality of Catalog-Rule
module :-
- vendor/magento/module-catalog-rule/Helper/Data.php
- vendor/magento/module-catalog-rule/Model/Rule.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/Product.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/SimpleActionOptionsProvider.php
- vendor/magento/module-catalog-rule/Observer/ProcessAdminFinalPriceObserver.php
- vendor/magento/module-catalog-rule/Observer/ProcessFrontFinalPriceObserver.php
- vendor/magento/module-catalog/Model/Product/Type/Price.php
- vendor/magento/module-catalog-rule/Model/Indexer/IndexBuilder.php
With that you can override all this functionality
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%2f267592%2fhow-to-set-promo-can-be-used-x-times-for-each-day-in-magento-2%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
It is possible but you want to buy extension
or create custom module
Override the functionality of Catalog-Rule
module :-
- vendor/magento/module-catalog-rule/Helper/Data.php
- vendor/magento/module-catalog-rule/Model/Rule.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/Product.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/SimpleActionOptionsProvider.php
- vendor/magento/module-catalog-rule/Observer/ProcessAdminFinalPriceObserver.php
- vendor/magento/module-catalog-rule/Observer/ProcessFrontFinalPriceObserver.php
- vendor/magento/module-catalog/Model/Product/Type/Price.php
- vendor/magento/module-catalog-rule/Model/Indexer/IndexBuilder.php
With that you can override all this functionality
add a comment |
It is possible but you want to buy extension
or create custom module
Override the functionality of Catalog-Rule
module :-
- vendor/magento/module-catalog-rule/Helper/Data.php
- vendor/magento/module-catalog-rule/Model/Rule.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/Product.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/SimpleActionOptionsProvider.php
- vendor/magento/module-catalog-rule/Observer/ProcessAdminFinalPriceObserver.php
- vendor/magento/module-catalog-rule/Observer/ProcessFrontFinalPriceObserver.php
- vendor/magento/module-catalog/Model/Product/Type/Price.php
- vendor/magento/module-catalog-rule/Model/Indexer/IndexBuilder.php
With that you can override all this functionality
add a comment |
It is possible but you want to buy extension
or create custom module
Override the functionality of Catalog-Rule
module :-
- vendor/magento/module-catalog-rule/Helper/Data.php
- vendor/magento/module-catalog-rule/Model/Rule.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/Product.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/SimpleActionOptionsProvider.php
- vendor/magento/module-catalog-rule/Observer/ProcessAdminFinalPriceObserver.php
- vendor/magento/module-catalog-rule/Observer/ProcessFrontFinalPriceObserver.php
- vendor/magento/module-catalog/Model/Product/Type/Price.php
- vendor/magento/module-catalog-rule/Model/Indexer/IndexBuilder.php
With that you can override all this functionality
It is possible but you want to buy extension
or create custom module
Override the functionality of Catalog-Rule
module :-
- vendor/magento/module-catalog-rule/Helper/Data.php
- vendor/magento/module-catalog-rule/Model/Rule.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/Product.php
- vendor/magento/module-catalog-rule/Model/Rule/Action/SimpleActionOptionsProvider.php
- vendor/magento/module-catalog-rule/Observer/ProcessAdminFinalPriceObserver.php
- vendor/magento/module-catalog-rule/Observer/ProcessFrontFinalPriceObserver.php
- vendor/magento/module-catalog/Model/Product/Type/Price.php
- vendor/magento/module-catalog-rule/Model/Indexer/IndexBuilder.php
With that you can override all this functionality
edited yesterday
answered yesterday
Ronak RathodRonak Rathod
715112
715112
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%2f267592%2fhow-to-set-promo-can-be-used-x-times-for-each-day-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
It is possible but you want to buy extension or create custom module for that
– Kamlesh Solanki
yesterday
@KamleshSolanki custom module
– blue
yesterday