config.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
  9. <default>
  10. <carriers>
  11. <flatrate>
  12. <active>1</active>
  13. <sallowspecific>0</sallowspecific>
  14. <model>Magento\OfflineShipping\Model\Carrier\Flatrate</model>
  15. <name>Fixed</name>
  16. <price>5.00</price>
  17. <title>Flat Rate</title>
  18. <type>I</type>
  19. <specificerrmsg>This shipping method is not available. To use this shipping method, please contact us.</specificerrmsg>
  20. <handling_type>F</handling_type>
  21. </flatrate>
  22. <tablerate>
  23. <active>0</active>
  24. <sallowspecific>0</sallowspecific>
  25. <condition_name>package_weight</condition_name>
  26. <include_virtual_price>1</include_virtual_price>
  27. <model>Magento\OfflineShipping\Model\Carrier\Tablerate</model>
  28. <name>Table Rate</name>
  29. <title>Best Way</title>
  30. <specificerrmsg>This shipping method is not available. To use this shipping method, please contact us.</specificerrmsg>
  31. <handling_type>F</handling_type>
  32. </tablerate>
  33. <freeshipping>
  34. <active>0</active>
  35. <sallowspecific>0</sallowspecific>
  36. <cutoff_cost>50</cutoff_cost>
  37. <model>Magento\OfflineShipping\Model\Carrier\Freeshipping</model>
  38. <name>Free</name>
  39. <title>Free Shipping</title>
  40. <specificerrmsg>This shipping method is not available. To use this shipping method, please contact us.</specificerrmsg>
  41. </freeshipping>
  42. </carriers>
  43. </default>
  44. </config>