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;








2















I have installed Check delivery available extension in my website.



Here the options are as follows:



  1. Delivery available

  2. 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?










share|improve this question






























    2















    I have installed Check delivery available extension in my website.



    Here the options are as follows:



    1. Delivery available

    2. 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?










    share|improve this question


























      2












      2








      2








      I have installed Check delivery available extension in my website.



      Here the options are as follows:



      1. Delivery available

      2. 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?










      share|improve this question
















      I have installed Check delivery available extension in my website.



      Here the options are as follows:



      1. Delivery available

      2. 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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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




















          1 Answer
          1






          active

          oldest

          votes


















          0














          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;






          share|improve this answer























          • I havent used any store pickup module

            – Teja Bhagavan Kollepara
            Jun 18 at 4:33













          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
          );



          );













          draft saved

          draft discarded


















          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









          0














          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;






          share|improve this answer























          • I havent used any store pickup module

            – Teja Bhagavan Kollepara
            Jun 18 at 4:33















          0














          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;






          share|improve this answer























          • I havent used any store pickup module

            – Teja Bhagavan Kollepara
            Jun 18 at 4:33













          0












          0








          0







          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;






          share|improve this answer













          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;







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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

















          • 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

















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

          Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?