Magento2.3.1: How to Enable Flat Rate Shipping method on delivery not available productsHow to add multiple flat rate shippingOnePage Checkout - Hide Payment method depending on Shipping MethodFlat Rate shipping price is not being applied at OnePageCheckoutHow to set up flat rate shippingFlat rate shipping brokenTable weigh shipping inspite of Show Method if Not ApplicableShipping Method is not rendered in Checkout though it is returnedMagento2: Flat rate and table rate shipping not showing at backendHow to add another flat rate shipping option?Magento 2 - Programmatically update the flat rate shipping method price in checkout
Can a nowhere continuous function have a connected graph?
Is it possible to have a character with proficiency in all martial weapons without proficiency in Medium armor?
Security Patch SUPEE-11155 - Possible issues?
Prime parity peregrination
Movie with Zoltar in a trailer park named Paradise and a boy playing a video game then being recruited by aliens to fight in space
Who voices the character "Finger" in The Fifth Element?
Why wasn't EBCDIC designed with contiguous alphanumeric characters?
Was it really unprofessional of me to leave without asking for a raise first?
Word ending in "-ine" for rat-like
Single level file directory
What do you call a notepad used to keep a record?
How do I present a future free of gender stereotypes without being jarring or overpowering the narrative?
What game is this character in the Pixels movie from?
How do I ensure my employees don't abuse my flexible work hours policy?
13th chords on guitar
Copy group of files (Filename*) to backup (Filename*.bak)
How Do I Know When I am in Private Mode?
How can a valley surrounded by mountains be fertile and rainy?
Could this problem be tackled using Mathematica?
Have any large aeroplanes been landed - safely and without damage - in locations that they could not be flown away from?
How to securely dispose of a smartphone?
Is there reliable evidence that depleted uranium from the 1999 NATO bombing is causing cancer in Serbia?
Could human civilization live 150 years in a nuclear-powered aircraft carrier colony without resorting to mass killing/ cannibalism?
How to describe POV characters?
Magento2.3.1: How to Enable Flat Rate Shipping method on delivery not available products
How to add multiple flat rate shippingOnePage Checkout - Hide Payment method depending on Shipping MethodFlat Rate shipping price is not being applied at OnePageCheckoutHow to set up flat rate shippingFlat rate shipping brokenTable weigh shipping inspite of Show Method if Not ApplicableShipping Method is not rendered in Checkout though it is returnedMagento2: Flat rate and table rate shipping not showing at backendHow to add another flat rate shipping option?Magento 2 - Programmatically update the flat rate shipping method price in checkout
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have installed Check delivery available extension in my website.
Here the options are as follows:
- Delivery available
- Delivery Not Available.
For Available delivery, We added dummy pin codes. If any user checked delivery with non added pin codes, They will get display a message as Delivery not available.
I have enabled the flat rate option at shipping methods. And want to show for this non delivered products only.
Here, If any product is having the status Delivery Not Available, The shipping method should be Flat rate only.
How to do that?
shipping-methods magento2.3.1 delivery
add a comment |
I have installed Check delivery available extension in my website.
Here the options are as follows:
- Delivery available
- Delivery Not Available.
For Available delivery, We added dummy pin codes. If any user checked delivery with non added pin codes, They will get display a message as Delivery not available.
I have enabled the flat rate option at shipping methods. And want to show for this non delivered products only.
Here, If any product is having the status Delivery Not Available, The shipping method should be Flat rate only.
How to do that?
shipping-methods magento2.3.1 delivery
add a comment |
I have installed Check delivery available extension in my website.
Here the options are as follows:
- Delivery available
- Delivery Not Available.
For Available delivery, We added dummy pin codes. If any user checked delivery with non added pin codes, They will get display a message as Delivery not available.
I have enabled the flat rate option at shipping methods. And want to show for this non delivered products only.
Here, If any product is having the status Delivery Not Available, The shipping method should be Flat rate only.
How to do that?
shipping-methods magento2.3.1 delivery
I have installed Check delivery available extension in my website.
Here the options are as follows:
- Delivery available
- Delivery Not Available.
For Available delivery, We added dummy pin codes. If any user checked delivery with non added pin codes, They will get display a message as Delivery not available.
I have enabled the flat rate option at shipping methods. And want to show for this non delivered products only.
Here, If any product is having the status Delivery Not Available, The shipping method should be Flat rate only.
How to do that?
shipping-methods magento2.3.1 delivery
shipping-methods magento2.3.1 delivery
edited Jun 20 at 9:30
Teja Bhagavan Kollepara
asked Jun 17 at 11:20
Teja Bhagavan KolleparaTeja Bhagavan Kollepara
2,9994 gold badges20 silver badges51 bronze badges
2,9994 gold badges20 silver badges51 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Goto your shipping module to the model file like below:
app/code/Vendor/StorePickup/Model/Carrier/StorePickup.php
There is a method name collectRates. You will find something like below code:
if (!$this->getConfigFlag('active'))
return false;
You can check your conditions, if you don't want to show the shipping method then return false else true like below:
// Checking if module is enabled or not.
if (!$this->getConfigFlag('active'))
return false;
// Your custom condition
if (IF SATISFY)
return true;
else
return false;
I havent used any store pickup module
– Teja Bhagavan Kollepara
Jun 18 at 4:33
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%2f278578%2fmagento2-3-1-how-to-enable-flat-rate-shipping-method-on-delivery-not-available%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
Goto your shipping module to the model file like below:
app/code/Vendor/StorePickup/Model/Carrier/StorePickup.php
There is a method name collectRates. You will find something like below code:
if (!$this->getConfigFlag('active'))
return false;
You can check your conditions, if you don't want to show the shipping method then return false else true like below:
// Checking if module is enabled or not.
if (!$this->getConfigFlag('active'))
return false;
// Your custom condition
if (IF SATISFY)
return true;
else
return false;
I havent used any store pickup module
– Teja Bhagavan Kollepara
Jun 18 at 4:33
add a comment |
Goto your shipping module to the model file like below:
app/code/Vendor/StorePickup/Model/Carrier/StorePickup.php
There is a method name collectRates. You will find something like below code:
if (!$this->getConfigFlag('active'))
return false;
You can check your conditions, if you don't want to show the shipping method then return false else true like below:
// Checking if module is enabled or not.
if (!$this->getConfigFlag('active'))
return false;
// Your custom condition
if (IF SATISFY)
return true;
else
return false;
I havent used any store pickup module
– Teja Bhagavan Kollepara
Jun 18 at 4:33
add a comment |
Goto your shipping module to the model file like below:
app/code/Vendor/StorePickup/Model/Carrier/StorePickup.php
There is a method name collectRates. You will find something like below code:
if (!$this->getConfigFlag('active'))
return false;
You can check your conditions, if you don't want to show the shipping method then return false else true like below:
// Checking if module is enabled or not.
if (!$this->getConfigFlag('active'))
return false;
// Your custom condition
if (IF SATISFY)
return true;
else
return false;
Goto your shipping module to the model file like below:
app/code/Vendor/StorePickup/Model/Carrier/StorePickup.php
There is a method name collectRates. You will find something like below code:
if (!$this->getConfigFlag('active'))
return false;
You can check your conditions, if you don't want to show the shipping method then return false else true like below:
// Checking if module is enabled or not.
if (!$this->getConfigFlag('active'))
return false;
// Your custom condition
if (IF SATISFY)
return true;
else
return false;
answered Jun 17 at 11:52
Sukumar GoraiSukumar Gorai
7,5843 gold badges7 silver badges31 bronze badges
7,5843 gold badges7 silver badges31 bronze badges
I havent used any store pickup module
– Teja Bhagavan Kollepara
Jun 18 at 4:33
add a comment |
I havent used any store pickup module
– Teja Bhagavan Kollepara
Jun 18 at 4:33
I havent used any store pickup module
– Teja Bhagavan Kollepara
Jun 18 at 4:33
I havent used any store pickup module
– Teja Bhagavan Kollepara
Jun 18 at 4:33
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%2f278578%2fmagento2-3-1-how-to-enable-flat-rate-shipping-method-on-delivery-not-available%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