payment information depends on shipping information magento The Next CEO of Stack OverflowMagento1 specific shipping display specific payment optionCheckout broken after update to Magento 1.9.0.1how to Remove payment method, shipping information and shipping methodIssue with Payment Informationhow to update customer and order details from magento to ERP using event observer?Remove Shipping Information and Shipping method?Change custom field position in checkout pageshipping and handling informationToggle shipping method based on customer's conditionMagento1: Hide zero shipping price in checkout shipping method stepMagento 1.9 combining Billing & shipping information into one and shipping method & payment information into one

What happens if you roll doubles 3 times then land on "Go to jail?"

Term for the "extreme-extension" version of a straw man fallacy?

Why does C# sound extremely flat when saxophone is tuned to G?

How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?

Where to find order of arguments for default functions

Inappropriate reference requests from Journal reviewers

Why is there a PLL in CPU?

Can the Reverse Gravity spell affect the Meteor Swarm spell?

How to use tikz in fbox?

Trouble understanding the speech of overseas colleagues

How do we know the LHC results are robust?

How to safely derail a train during transit?

Return the Closest Prime Number

What is the purpose of the Evocation wizard's Potent Cantrip feature?

Apart from "berlinern", do any other German dialects have a corresponding verb?

Should I tutor a student who I know has cheated on their homework?

How to get regions to plot as graphics

How to Reset Passwords on Multiple Websites Easily?

How can I quit an app using Terminal?

Anatomically Correct Strange Women In Ponds Distributing Swords

What does this shorthand mean?

Opposite of a diet

Why does standard notation not preserve intervals (visually)

WOW air has ceased operation, can I get my tickets refunded?



payment information depends on shipping information magento



The Next CEO of Stack OverflowMagento1 specific shipping display specific payment optionCheckout broken after update to Magento 1.9.0.1how to Remove payment method, shipping information and shipping methodIssue with Payment Informationhow to update customer and order details from magento to ERP using event observer?Remove Shipping Information and Shipping method?Change custom field position in checkout pageshipping and handling informationToggle shipping method based on customer's conditionMagento1: Hide zero shipping price in checkout shipping method stepMagento 1.9 combining Billing & shipping information into one and shipping method & payment information into one










1















Payment information depends on shipping method



In Shipping Method when selected Standard Shipping 2-7 days then hide Cash On Delivery and vise versa



when shipping method is fixed then hide check money order if check stranded shipping then hide cash on delivery



i already add this code in appdesignfrontendbasedefaulttemplatecheckoutonepagepaymentmethod.phtm



getMethods(); $oneMethod = count($methods)
__('No Payment Methods') ?>
getCode(); if($_POST['shipping_method'] == 'flatrate_flatrate') if($_code == 'checkmo') continue; ?>



enter image description hereenter image description here










share|improve this question




























    1















    Payment information depends on shipping method



    In Shipping Method when selected Standard Shipping 2-7 days then hide Cash On Delivery and vise versa



    when shipping method is fixed then hide check money order if check stranded shipping then hide cash on delivery



    i already add this code in appdesignfrontendbasedefaulttemplatecheckoutonepagepaymentmethod.phtm



    getMethods(); $oneMethod = count($methods)
    __('No Payment Methods') ?>
    getCode(); if($_POST['shipping_method'] == 'flatrate_flatrate') if($_code == 'checkmo') continue; ?>



    enter image description hereenter image description here










    share|improve this question


























      1












      1








      1








      Payment information depends on shipping method



      In Shipping Method when selected Standard Shipping 2-7 days then hide Cash On Delivery and vise versa



      when shipping method is fixed then hide check money order if check stranded shipping then hide cash on delivery



      i already add this code in appdesignfrontendbasedefaulttemplatecheckoutonepagepaymentmethod.phtm



      getMethods(); $oneMethod = count($methods)
      __('No Payment Methods') ?>
      getCode(); if($_POST['shipping_method'] == 'flatrate_flatrate') if($_code == 'checkmo') continue; ?>



      enter image description hereenter image description here










      share|improve this question
















      Payment information depends on shipping method



      In Shipping Method when selected Standard Shipping 2-7 days then hide Cash On Delivery and vise versa



      when shipping method is fixed then hide check money order if check stranded shipping then hide cash on delivery



      i already add this code in appdesignfrontendbasedefaulttemplatecheckoutonepagepaymentmethod.phtm



      getMethods(); $oneMethod = count($methods)
      __('No Payment Methods') ?>
      getCode(); if($_POST['shipping_method'] == 'flatrate_flatrate') if($_code == 'checkmo') continue; ?>



      enter image description hereenter image description here







      magento-1.9






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 1 hour ago









      Shoaib Munir

      2,2991829




      2,2991829










      asked Aug 17 '17 at 7:18









      Danish AliDanish Ali

      112




      112




















          1 Answer
          1






          active

          oldest

          votes


















          1














          credits : Elavarasan for link



          In the link, they used different shipping and payment methods. you need to change the codes according to your requirements.



          shipping_method => flatrate_flatrate
          paymet_method => checkmo


          As for I got, you trying to hide some payment methods based on shipping method. For this you don't need to observe things at all. Simply you can do this, just follow me,



          Every methods(in one page check out) post the methods which are chosen to the next level. so you can get the shipping method which are chosen, in payment method level. Just print the post things in



          app/design/frontend/base/default/template/checkout/onepage/payment/methods.phtml


          in this add below one,



          <?php print_r($_POST); ?>


          So now you can get the shipping methods which are chosen previous step. And note it, so now, you can add just simple logic (if else) condition in same file for hiding payment,



          For example here I want hide check / money order payment method, if shipping method is flat. Here the payment method code is checkmo. you can get payment method code by simply printing that variable like echo $_code = $_method->getCode(); in same file. so here just add simple if else ,



           <?php
          $methods = $this->getMethods();


          $oneMethod = count($methods) <= 1;
          ?>
          <?php if (empty($methods)): ?>
          <dt>
          <?php echo $this->__('No Payment Methods') ?>
          </dt>
          <?php else:
          foreach ($methods as $_method):
          echo $_code = $_method->getCode();


          if($_POST['shipping_method'] == 'flatrate_flatrate')
          if($_code == 'checkmo')
          continue;


          ?>


          Here,



           if($_POST['shipping_method'] == 'flatrate_flatrate') 
          if($_code == 'checkmo')
          continue;




          checks the shipping method and skip the payment method which we don't want to display. That's it. Please comment here if you have any doubt.



          Note:



           shipping_method => flatrate_flatrate
          paymet_method => checkmo





          share|improve this answer























          • Bro i apply as it but its not working when i check flat in payment method Check / Money order is still display

            – Danish Ali
            Sep 26 '17 at 8:01











          • Bro is it possible when i select stranded shipping 2-3 days in shipping method then only Bank transfer display in payment method other payment method off

            – Danish Ali
            Sep 26 '17 at 8:08











          • @DanishAli yes, you need to use the respective shipping & payment method codes and try......

            – Baby in Magento
            Sep 26 '17 at 9:06











          • Hello Sir (@Baby in Magento) i have applied as suggested by you but its not working sir kindly check 3 images still 1 month+ i am unable to solve it [1]: i.stack.imgur.com/HlI3F.png [2]: i.stack.imgur.com/EE4In.png [3]: i.stack.imgur.com/0r7mZ.png

            – Danish Ali
            Oct 13 '17 at 10:49












          • @DanishAli please update the question with updated code & images......

            – Baby in Magento
            Oct 13 '17 at 10:58











          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%2f189433%2fpayment-information-depends-on-shipping-information-magento%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









          1














          credits : Elavarasan for link



          In the link, they used different shipping and payment methods. you need to change the codes according to your requirements.



          shipping_method => flatrate_flatrate
          paymet_method => checkmo


          As for I got, you trying to hide some payment methods based on shipping method. For this you don't need to observe things at all. Simply you can do this, just follow me,



          Every methods(in one page check out) post the methods which are chosen to the next level. so you can get the shipping method which are chosen, in payment method level. Just print the post things in



          app/design/frontend/base/default/template/checkout/onepage/payment/methods.phtml


          in this add below one,



          <?php print_r($_POST); ?>


          So now you can get the shipping methods which are chosen previous step. And note it, so now, you can add just simple logic (if else) condition in same file for hiding payment,



          For example here I want hide check / money order payment method, if shipping method is flat. Here the payment method code is checkmo. you can get payment method code by simply printing that variable like echo $_code = $_method->getCode(); in same file. so here just add simple if else ,



           <?php
          $methods = $this->getMethods();


          $oneMethod = count($methods) <= 1;
          ?>
          <?php if (empty($methods)): ?>
          <dt>
          <?php echo $this->__('No Payment Methods') ?>
          </dt>
          <?php else:
          foreach ($methods as $_method):
          echo $_code = $_method->getCode();


          if($_POST['shipping_method'] == 'flatrate_flatrate')
          if($_code == 'checkmo')
          continue;


          ?>


          Here,



           if($_POST['shipping_method'] == 'flatrate_flatrate') 
          if($_code == 'checkmo')
          continue;




          checks the shipping method and skip the payment method which we don't want to display. That's it. Please comment here if you have any doubt.



          Note:



           shipping_method => flatrate_flatrate
          paymet_method => checkmo





          share|improve this answer























          • Bro i apply as it but its not working when i check flat in payment method Check / Money order is still display

            – Danish Ali
            Sep 26 '17 at 8:01











          • Bro is it possible when i select stranded shipping 2-3 days in shipping method then only Bank transfer display in payment method other payment method off

            – Danish Ali
            Sep 26 '17 at 8:08











          • @DanishAli yes, you need to use the respective shipping & payment method codes and try......

            – Baby in Magento
            Sep 26 '17 at 9:06











          • Hello Sir (@Baby in Magento) i have applied as suggested by you but its not working sir kindly check 3 images still 1 month+ i am unable to solve it [1]: i.stack.imgur.com/HlI3F.png [2]: i.stack.imgur.com/EE4In.png [3]: i.stack.imgur.com/0r7mZ.png

            – Danish Ali
            Oct 13 '17 at 10:49












          • @DanishAli please update the question with updated code & images......

            – Baby in Magento
            Oct 13 '17 at 10:58















          1














          credits : Elavarasan for link



          In the link, they used different shipping and payment methods. you need to change the codes according to your requirements.



          shipping_method => flatrate_flatrate
          paymet_method => checkmo


          As for I got, you trying to hide some payment methods based on shipping method. For this you don't need to observe things at all. Simply you can do this, just follow me,



          Every methods(in one page check out) post the methods which are chosen to the next level. so you can get the shipping method which are chosen, in payment method level. Just print the post things in



          app/design/frontend/base/default/template/checkout/onepage/payment/methods.phtml


          in this add below one,



          <?php print_r($_POST); ?>


          So now you can get the shipping methods which are chosen previous step. And note it, so now, you can add just simple logic (if else) condition in same file for hiding payment,



          For example here I want hide check / money order payment method, if shipping method is flat. Here the payment method code is checkmo. you can get payment method code by simply printing that variable like echo $_code = $_method->getCode(); in same file. so here just add simple if else ,



           <?php
          $methods = $this->getMethods();


          $oneMethod = count($methods) <= 1;
          ?>
          <?php if (empty($methods)): ?>
          <dt>
          <?php echo $this->__('No Payment Methods') ?>
          </dt>
          <?php else:
          foreach ($methods as $_method):
          echo $_code = $_method->getCode();


          if($_POST['shipping_method'] == 'flatrate_flatrate')
          if($_code == 'checkmo')
          continue;


          ?>


          Here,



           if($_POST['shipping_method'] == 'flatrate_flatrate') 
          if($_code == 'checkmo')
          continue;




          checks the shipping method and skip the payment method which we don't want to display. That's it. Please comment here if you have any doubt.



          Note:



           shipping_method => flatrate_flatrate
          paymet_method => checkmo





          share|improve this answer























          • Bro i apply as it but its not working when i check flat in payment method Check / Money order is still display

            – Danish Ali
            Sep 26 '17 at 8:01











          • Bro is it possible when i select stranded shipping 2-3 days in shipping method then only Bank transfer display in payment method other payment method off

            – Danish Ali
            Sep 26 '17 at 8:08











          • @DanishAli yes, you need to use the respective shipping & payment method codes and try......

            – Baby in Magento
            Sep 26 '17 at 9:06











          • Hello Sir (@Baby in Magento) i have applied as suggested by you but its not working sir kindly check 3 images still 1 month+ i am unable to solve it [1]: i.stack.imgur.com/HlI3F.png [2]: i.stack.imgur.com/EE4In.png [3]: i.stack.imgur.com/0r7mZ.png

            – Danish Ali
            Oct 13 '17 at 10:49












          • @DanishAli please update the question with updated code & images......

            – Baby in Magento
            Oct 13 '17 at 10:58













          1












          1








          1







          credits : Elavarasan for link



          In the link, they used different shipping and payment methods. you need to change the codes according to your requirements.



          shipping_method => flatrate_flatrate
          paymet_method => checkmo


          As for I got, you trying to hide some payment methods based on shipping method. For this you don't need to observe things at all. Simply you can do this, just follow me,



          Every methods(in one page check out) post the methods which are chosen to the next level. so you can get the shipping method which are chosen, in payment method level. Just print the post things in



          app/design/frontend/base/default/template/checkout/onepage/payment/methods.phtml


          in this add below one,



          <?php print_r($_POST); ?>


          So now you can get the shipping methods which are chosen previous step. And note it, so now, you can add just simple logic (if else) condition in same file for hiding payment,



          For example here I want hide check / money order payment method, if shipping method is flat. Here the payment method code is checkmo. you can get payment method code by simply printing that variable like echo $_code = $_method->getCode(); in same file. so here just add simple if else ,



           <?php
          $methods = $this->getMethods();


          $oneMethod = count($methods) <= 1;
          ?>
          <?php if (empty($methods)): ?>
          <dt>
          <?php echo $this->__('No Payment Methods') ?>
          </dt>
          <?php else:
          foreach ($methods as $_method):
          echo $_code = $_method->getCode();


          if($_POST['shipping_method'] == 'flatrate_flatrate')
          if($_code == 'checkmo')
          continue;


          ?>


          Here,



           if($_POST['shipping_method'] == 'flatrate_flatrate') 
          if($_code == 'checkmo')
          continue;




          checks the shipping method and skip the payment method which we don't want to display. That's it. Please comment here if you have any doubt.



          Note:



           shipping_method => flatrate_flatrate
          paymet_method => checkmo





          share|improve this answer













          credits : Elavarasan for link



          In the link, they used different shipping and payment methods. you need to change the codes according to your requirements.



          shipping_method => flatrate_flatrate
          paymet_method => checkmo


          As for I got, you trying to hide some payment methods based on shipping method. For this you don't need to observe things at all. Simply you can do this, just follow me,



          Every methods(in one page check out) post the methods which are chosen to the next level. so you can get the shipping method which are chosen, in payment method level. Just print the post things in



          app/design/frontend/base/default/template/checkout/onepage/payment/methods.phtml


          in this add below one,



          <?php print_r($_POST); ?>


          So now you can get the shipping methods which are chosen previous step. And note it, so now, you can add just simple logic (if else) condition in same file for hiding payment,



          For example here I want hide check / money order payment method, if shipping method is flat. Here the payment method code is checkmo. you can get payment method code by simply printing that variable like echo $_code = $_method->getCode(); in same file. so here just add simple if else ,



           <?php
          $methods = $this->getMethods();


          $oneMethod = count($methods) <= 1;
          ?>
          <?php if (empty($methods)): ?>
          <dt>
          <?php echo $this->__('No Payment Methods') ?>
          </dt>
          <?php else:
          foreach ($methods as $_method):
          echo $_code = $_method->getCode();


          if($_POST['shipping_method'] == 'flatrate_flatrate')
          if($_code == 'checkmo')
          continue;


          ?>


          Here,



           if($_POST['shipping_method'] == 'flatrate_flatrate') 
          if($_code == 'checkmo')
          continue;




          checks the shipping method and skip the payment method which we don't want to display. That's it. Please comment here if you have any doubt.



          Note:



           shipping_method => flatrate_flatrate
          paymet_method => checkmo






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 17 '17 at 7:25









          Baby in MagentoBaby in Magento

          8791354169




          8791354169












          • Bro i apply as it but its not working when i check flat in payment method Check / Money order is still display

            – Danish Ali
            Sep 26 '17 at 8:01











          • Bro is it possible when i select stranded shipping 2-3 days in shipping method then only Bank transfer display in payment method other payment method off

            – Danish Ali
            Sep 26 '17 at 8:08











          • @DanishAli yes, you need to use the respective shipping & payment method codes and try......

            – Baby in Magento
            Sep 26 '17 at 9:06











          • Hello Sir (@Baby in Magento) i have applied as suggested by you but its not working sir kindly check 3 images still 1 month+ i am unable to solve it [1]: i.stack.imgur.com/HlI3F.png [2]: i.stack.imgur.com/EE4In.png [3]: i.stack.imgur.com/0r7mZ.png

            – Danish Ali
            Oct 13 '17 at 10:49












          • @DanishAli please update the question with updated code & images......

            – Baby in Magento
            Oct 13 '17 at 10:58

















          • Bro i apply as it but its not working when i check flat in payment method Check / Money order is still display

            – Danish Ali
            Sep 26 '17 at 8:01











          • Bro is it possible when i select stranded shipping 2-3 days in shipping method then only Bank transfer display in payment method other payment method off

            – Danish Ali
            Sep 26 '17 at 8:08











          • @DanishAli yes, you need to use the respective shipping & payment method codes and try......

            – Baby in Magento
            Sep 26 '17 at 9:06











          • Hello Sir (@Baby in Magento) i have applied as suggested by you but its not working sir kindly check 3 images still 1 month+ i am unable to solve it [1]: i.stack.imgur.com/HlI3F.png [2]: i.stack.imgur.com/EE4In.png [3]: i.stack.imgur.com/0r7mZ.png

            – Danish Ali
            Oct 13 '17 at 10:49












          • @DanishAli please update the question with updated code & images......

            – Baby in Magento
            Oct 13 '17 at 10:58
















          Bro i apply as it but its not working when i check flat in payment method Check / Money order is still display

          – Danish Ali
          Sep 26 '17 at 8:01





          Bro i apply as it but its not working when i check flat in payment method Check / Money order is still display

          – Danish Ali
          Sep 26 '17 at 8:01













          Bro is it possible when i select stranded shipping 2-3 days in shipping method then only Bank transfer display in payment method other payment method off

          – Danish Ali
          Sep 26 '17 at 8:08





          Bro is it possible when i select stranded shipping 2-3 days in shipping method then only Bank transfer display in payment method other payment method off

          – Danish Ali
          Sep 26 '17 at 8:08













          @DanishAli yes, you need to use the respective shipping & payment method codes and try......

          – Baby in Magento
          Sep 26 '17 at 9:06





          @DanishAli yes, you need to use the respective shipping & payment method codes and try......

          – Baby in Magento
          Sep 26 '17 at 9:06













          Hello Sir (@Baby in Magento) i have applied as suggested by you but its not working sir kindly check 3 images still 1 month+ i am unable to solve it [1]: i.stack.imgur.com/HlI3F.png [2]: i.stack.imgur.com/EE4In.png [3]: i.stack.imgur.com/0r7mZ.png

          – Danish Ali
          Oct 13 '17 at 10:49






          Hello Sir (@Baby in Magento) i have applied as suggested by you but its not working sir kindly check 3 images still 1 month+ i am unable to solve it [1]: i.stack.imgur.com/HlI3F.png [2]: i.stack.imgur.com/EE4In.png [3]: i.stack.imgur.com/0r7mZ.png

          – Danish Ali
          Oct 13 '17 at 10:49














          @DanishAli please update the question with updated code & images......

          – Baby in Magento
          Oct 13 '17 at 10:58





          @DanishAli please update the question with updated code & images......

          – Baby in Magento
          Oct 13 '17 at 10:58

















          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%2f189433%2fpayment-information-depends-on-shipping-information-magento%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

          Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

          Fil:Tokke komm.svg

          Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?