payment information depends on shipping information magento The Next CEO of Stack...
Visit to the USA with ESTA approved before trip to Iran
Can a caster that cast Polymorph on themselves stop concentrating at any point even if their Int is low?
India just shot down a satellite from the ground. At what altitude range is the resulting debris field?
Customer Requests (Sometimes) Drive Me Bonkers!
How can I open an app using Terminal?
Why here is plural "We went to the movies last night."
If I blow insulation everywhere in my attic except the door trap, will heat escape through it?
Term for the "extreme-extension" version of a straw man fallacy?
How do scammers retract money, while you can’t?
Why were Madagascar and New Zealand discovered so late?
How to count occurrences of text in a file?
Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables
How easy is it to start Magic from scratch?
How can I quit an app using Terminal?
Apart from "berlinern", do any other German dialects have a corresponding verb?
Why did we only see the N-1 starfighters in one film?
How to get regions to plot as graphics
How can I get through very long and very dry, but also very useful technical documents when learning a new tool?
Shade part of a Venn diagram
WOW air has ceased operation, can I get my tickets refunded?
Only print output after finding pattern
Does it take more energy to get to Venus or to Mars?
Why didn't Khan get resurrected in the Genesis Explosion?
Can a single photon have an energy density?
payment information depends on shipping information magento
The Next CEO of Stack OverflowMagento1 specific shipping display specific payment optionhow to Remove payment method, shipping information and shipping methodIssue with Payment InformationRemove Shipping Information and Shipping method?is any Observer In magento After Payment method is Selected..before order placeshipping and handling informationShipping and Handling Information' tab shows 'No shipping information available' in Sales Order adminToggle shipping method based on customer's conditionMagento1: Hide zero shipping price in checkout shipping method stepMagento 1.9 API v2 Payment Additional InformationMagento 1.9 combining Billing & shipping information into one and shipping method & payment information into one
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; } } ?>
magento-1.9
add a comment |
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; } } ?>
magento-1.9
add a comment |
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; } } ?>
magento-1.9
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; } } ?>
magento-1.9
magento-1.9
edited 26 mins ago
Shoaib Munir
2,2941829
2,2941829
asked Aug 17 '17 at 7:18
Danish AliDanish Ali
112
112
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
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
|
show 1 more 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%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
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
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
|
show 1 more comment
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
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
|
show 1 more comment
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
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
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
|
show 1 more comment
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
|
show 1 more 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%2f189433%2fpayment-information-depends-on-shipping-information-magento%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