![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-checkout/view/frontend/web/template/cart/ |
<!-- /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> <form id="co-shipping-method-form" data-bind="blockLoader: isLoading, visible: isVisible()"> <p class="field note" data-bind="visible: (!isLoading() && shippingRates().length <= 0)"> <!-- ko text: $t('Sorry, no quotes are available for this order at this time')--><!-- /ko --> </p> <fieldset class="fieldset rate" data-bind="visible: (shippingRates().length > 0)"> <dl class="items methods" data-bind="foreach: shippingRateGroups"> <dt class="item-title"><span data-bind="text: $data"></span></dt> <dd class="item-options" data-bind="foreach: { data:$parent.getRatesForGroup($data), as: 'method' }"> <div data-bind="css: {'field choice item': available, 'message error': !available} "> <!-- ko ifnot: (available) --> <div data-bind="text: error_message"></div> <!-- /ko --> <!-- ko if: (available) --> <input type="radio" class="radio" data-bind=" click: $parents[1].selectShippingMethod, checked: $parents[1].selectedShippingMethod, attr: { value: carrier_code + '_' + method_code, id: 's_method_' + carrier_code + '_' + method_code, disabled: false } "/> <label class="label" data-bind="attr: {for: 's_method_' + carrier_code + '_' + method_code}"> <!-- ko text: $data.method_title --><!-- /ko --> <each args="element.getRegion('price')" render=""></each> </label> <!-- /ko --> </div> </dd> </dl> </fieldset> </form>