problem with shipment methodsHow to add flat rate shipping for order over X value?Shipment Methods...
How to say "Brexit" in Latin?
How to deal with an incendiary email that was recalled
How can I get my players to come to the game session after agreeing to a date?
How to escape the null character in here-document?(bash and/or dash)
Word or phrase for showing great skill at something WITHOUT formal training in it
Can making a creature unable to attack after it has been assigned as an attacker remove it from combat?
How would an AI self awareness kill switch work?
Can I become debt free or should I file bankruptcy ? How to manage my debt and finances?
Why publish a research paper when a blog post or a lecture slide can have more citation count than a journal paper?
Why "Points exist" is not an axiom in Geometry
My cat mixes up the floors in my building. How can I help him?
Advice for a new journal editor
Can an insurance company drop you after receiving a bill and refusing to pay?
Why would space fleets be aligned?
How can I deliver in-universe written lore to players without it being dry exposition?
Can a hotel cancel a confirmed reservation?
How can my powered armor quickly replace its ceramic plates?
CREATE ASSEMBLY System.DirectoryServices.AccountManagement.dll without enabling TRUSTWORTHY
How to limit sight distance to 1 km
Can we use the stored gravitational potential energy of a building to produce power?
What is the most triangles you can make from a capital "H" and 3 straight lines?
Is there any other number that has similar properties as 21?
Difference between `vector<int> v;` and `vector<int> v = vector<int>();`
How can animals be objects of ethics without being subjects as well?
problem with shipment methods
How to add flat rate shipping for order over X value?Shipment Methods disappearflat rate or free shippingShipment confirmation email option not showing“Cannot save shipment.” error with non-sample orders. 1062 Duplicate entry * for key 'UNQ_SALES_FLAT_SHIPMENT_INCREMENT_ID'Problem with checkout pageMagento Order Shipment Email not sending - Instead we are sending the Shipment Update EmailGet Shipment Id while creating Shipment in Magento 1.9Magento2 resend shipment emailHow To Send Shipment Confirmation Emails with Time Interval?
For our sport supply products (still in testing mode). Main interface / user language will be Dutch.
We have put a minimum order amount of ERU 50 to receive free shipments. When I test with my Cart filled with products worth a value over EUR50 it still prompt me as part of check out procedure the shipment methods Free Shipment and Flat Rate. In the tab configuration / shipment methods / free shipping i put the field to 50.
magento-1.7 checkout shipment
add a comment |
For our sport supply products (still in testing mode). Main interface / user language will be Dutch.
We have put a minimum order amount of ERU 50 to receive free shipments. When I test with my Cart filled with products worth a value over EUR50 it still prompt me as part of check out procedure the shipment methods Free Shipment and Flat Rate. In the tab configuration / shipment methods / free shipping i put the field to 50.
magento-1.7 checkout shipment
add a comment |
For our sport supply products (still in testing mode). Main interface / user language will be Dutch.
We have put a minimum order amount of ERU 50 to receive free shipments. When I test with my Cart filled with products worth a value over EUR50 it still prompt me as part of check out procedure the shipment methods Free Shipment and Flat Rate. In the tab configuration / shipment methods / free shipping i put the field to 50.
magento-1.7 checkout shipment
For our sport supply products (still in testing mode). Main interface / user language will be Dutch.
We have put a minimum order amount of ERU 50 to receive free shipments. When I test with my Cart filled with products worth a value over EUR50 it still prompt me as part of check out procedure the shipment methods Free Shipment and Flat Rate. In the tab configuration / shipment methods / free shipping i put the field to 50.
magento-1.7 checkout shipment
magento-1.7 checkout shipment
edited 22 mins ago
Teja Bhagavan Kollepara
2,96341847
2,96341847
asked Jun 25 '14 at 12:39
user9567user9567
62
62
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
This is because at that moment both free shipping and flat rate method applies.
To display only free shipping if the order amount is 50 or more you need to use shopping cart rule. Follow the below steps for it
- Enable Flat rate and disable Free shipping
- Goto Promotions->shopping Cart Price rule from Magento admin
- Create a new rule for free shipping. Check the screenshot for how to do it.
Save and apply the rule it will work
Great feedback Dexter..Thxs for that. Since we would like also clients to order items based on based on reimbursements (so we will ship the ordered items and at the moment of delivery by postal service company the items will be paid for). Is this an extra feature that needs to be put on enable or should I simply add an extra shipment method extension from a 3rd party?
– user9567
Jun 27 '14 at 11:19
Please ask it in another question so you could get better replies as no one will read the comments. Also please ask the answer as accepted so the question could be closed.. Thanks
– Dexter
Jun 27 '14 at 14:31
add a comment |
You can add this rule into your design/theme/template/checkout/shipping_method/available.phtml
so before it starts calling and styling the different methods you can use this rule to achieve your result (you just need to know the method name for the free delivery.
<?php
if ( array_key_exists('freedelivery', $_shippingRateGroups )) {
$_shippingRateGroups = array('freedelivery' => $_shippingRateGroups['freedelivery']);
}
?>
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%2f24978%2fproblem-with-shipment-methods%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is because at that moment both free shipping and flat rate method applies.
To display only free shipping if the order amount is 50 or more you need to use shopping cart rule. Follow the below steps for it
- Enable Flat rate and disable Free shipping
- Goto Promotions->shopping Cart Price rule from Magento admin
- Create a new rule for free shipping. Check the screenshot for how to do it.
Save and apply the rule it will work
Great feedback Dexter..Thxs for that. Since we would like also clients to order items based on based on reimbursements (so we will ship the ordered items and at the moment of delivery by postal service company the items will be paid for). Is this an extra feature that needs to be put on enable or should I simply add an extra shipment method extension from a 3rd party?
– user9567
Jun 27 '14 at 11:19
Please ask it in another question so you could get better replies as no one will read the comments. Also please ask the answer as accepted so the question could be closed.. Thanks
– Dexter
Jun 27 '14 at 14:31
add a comment |
This is because at that moment both free shipping and flat rate method applies.
To display only free shipping if the order amount is 50 or more you need to use shopping cart rule. Follow the below steps for it
- Enable Flat rate and disable Free shipping
- Goto Promotions->shopping Cart Price rule from Magento admin
- Create a new rule for free shipping. Check the screenshot for how to do it.
Save and apply the rule it will work
Great feedback Dexter..Thxs for that. Since we would like also clients to order items based on based on reimbursements (so we will ship the ordered items and at the moment of delivery by postal service company the items will be paid for). Is this an extra feature that needs to be put on enable or should I simply add an extra shipment method extension from a 3rd party?
– user9567
Jun 27 '14 at 11:19
Please ask it in another question so you could get better replies as no one will read the comments. Also please ask the answer as accepted so the question could be closed.. Thanks
– Dexter
Jun 27 '14 at 14:31
add a comment |
This is because at that moment both free shipping and flat rate method applies.
To display only free shipping if the order amount is 50 or more you need to use shopping cart rule. Follow the below steps for it
- Enable Flat rate and disable Free shipping
- Goto Promotions->shopping Cart Price rule from Magento admin
- Create a new rule for free shipping. Check the screenshot for how to do it.
Save and apply the rule it will work
This is because at that moment both free shipping and flat rate method applies.
To display only free shipping if the order amount is 50 or more you need to use shopping cart rule. Follow the below steps for it
- Enable Flat rate and disable Free shipping
- Goto Promotions->shopping Cart Price rule from Magento admin
- Create a new rule for free shipping. Check the screenshot for how to do it.
Save and apply the rule it will work
edited 21 mins ago
Teja Bhagavan Kollepara
2,96341847
2,96341847
answered Jun 25 '14 at 12:49
DexterDexter
2,99032251
2,99032251
Great feedback Dexter..Thxs for that. Since we would like also clients to order items based on based on reimbursements (so we will ship the ordered items and at the moment of delivery by postal service company the items will be paid for). Is this an extra feature that needs to be put on enable or should I simply add an extra shipment method extension from a 3rd party?
– user9567
Jun 27 '14 at 11:19
Please ask it in another question so you could get better replies as no one will read the comments. Also please ask the answer as accepted so the question could be closed.. Thanks
– Dexter
Jun 27 '14 at 14:31
add a comment |
Great feedback Dexter..Thxs for that. Since we would like also clients to order items based on based on reimbursements (so we will ship the ordered items and at the moment of delivery by postal service company the items will be paid for). Is this an extra feature that needs to be put on enable or should I simply add an extra shipment method extension from a 3rd party?
– user9567
Jun 27 '14 at 11:19
Please ask it in another question so you could get better replies as no one will read the comments. Also please ask the answer as accepted so the question could be closed.. Thanks
– Dexter
Jun 27 '14 at 14:31
Great feedback Dexter..Thxs for that. Since we would like also clients to order items based on based on reimbursements (so we will ship the ordered items and at the moment of delivery by postal service company the items will be paid for). Is this an extra feature that needs to be put on enable or should I simply add an extra shipment method extension from a 3rd party?
– user9567
Jun 27 '14 at 11:19
Great feedback Dexter..Thxs for that. Since we would like also clients to order items based on based on reimbursements (so we will ship the ordered items and at the moment of delivery by postal service company the items will be paid for). Is this an extra feature that needs to be put on enable or should I simply add an extra shipment method extension from a 3rd party?
– user9567
Jun 27 '14 at 11:19
Please ask it in another question so you could get better replies as no one will read the comments. Also please ask the answer as accepted so the question could be closed.. Thanks
– Dexter
Jun 27 '14 at 14:31
Please ask it in another question so you could get better replies as no one will read the comments. Also please ask the answer as accepted so the question could be closed.. Thanks
– Dexter
Jun 27 '14 at 14:31
add a comment |
You can add this rule into your design/theme/template/checkout/shipping_method/available.phtml
so before it starts calling and styling the different methods you can use this rule to achieve your result (you just need to know the method name for the free delivery.
<?php
if ( array_key_exists('freedelivery', $_shippingRateGroups )) {
$_shippingRateGroups = array('freedelivery' => $_shippingRateGroups['freedelivery']);
}
?>
add a comment |
You can add this rule into your design/theme/template/checkout/shipping_method/available.phtml
so before it starts calling and styling the different methods you can use this rule to achieve your result (you just need to know the method name for the free delivery.
<?php
if ( array_key_exists('freedelivery', $_shippingRateGroups )) {
$_shippingRateGroups = array('freedelivery' => $_shippingRateGroups['freedelivery']);
}
?>
add a comment |
You can add this rule into your design/theme/template/checkout/shipping_method/available.phtml
so before it starts calling and styling the different methods you can use this rule to achieve your result (you just need to know the method name for the free delivery.
<?php
if ( array_key_exists('freedelivery', $_shippingRateGroups )) {
$_shippingRateGroups = array('freedelivery' => $_shippingRateGroups['freedelivery']);
}
?>
You can add this rule into your design/theme/template/checkout/shipping_method/available.phtml
so before it starts calling and styling the different methods you can use this rule to achieve your result (you just need to know the method name for the free delivery.
<?php
if ( array_key_exists('freedelivery', $_shippingRateGroups )) {
$_shippingRateGroups = array('freedelivery' => $_shippingRateGroups['freedelivery']);
}
?>
answered Jun 25 '14 at 14:15
MackaPackaMackaPacka
516
516
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%2f24978%2fproblem-with-shipment-methods%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