Skip to content

HTML tags must be properly nested and closed for Magento 2.4.4 >= #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
'checked': element.rates().length == 1 || element.isSelected" />
</td>
<td class="col col-price">
<each args="element.getRegion('price')" render="" />
<each args="element.getRegion('price')" render=""></each>
</td>
<td class="col col-method"
attr="'id': 'label_method_' + method.method_code + '_' + method.carrier_code"
text="method.method_title" />
text="method.method_title"></td>
<td class="col col-carrier"
attr="'id': 'label_carrier_' + method.method_code + '_' + method.carrier_code"
text="method.carrier_title" />
text="method.carrier_title"></td>
</tr>
<tr class="row row-error"
if="method.error_message">
Expand Down
30 changes: 15 additions & 15 deletions src/view/frontend/web/template/shipping.html
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
<li id="shipping" class="checkout-shipping-address" data-bind="fadeVisible: visible()">
<div class="step-title" translate="'Shipping Address'" data-role="title" />
<div class="step-title" translate="'Shipping Address'" data-role="title"></div>
<div id="checkout-step-shipping"
class="step-content"
data-role="content">

<each if="!quoteIsVirtual" args="getRegion('customer-email')" render="" />
<each args="getRegion('address-list')" render="" />
<each args="getRegion('address-list-additional-addresses')" render="" />
<each if="!quoteIsVirtual" args="getRegion('customer-email')" render=""></each>
<each args="getRegion('address-list')" render=""></each>
<each args="getRegion('address-list-additional-addresses')" render=""></each>

<!-- Address form pop up -->
<if args="!isFormInline">
<button type="button"
class="action action-show-popup"
click="showFormPopUp"
visible="!isNewAddressAdded()">
<span translate="'New Address'" />
<span translate="'New Address'"></span>
</button>
<div id="opc-new-shipping-address"
visible="isFormPopUpVisible()"
render="shippingFormTemplate" />
render="shippingFormTemplate"></div>
</if>

<each args="getRegion('before-form')" render="" />
<each args="getRegion('before-form')" render=""></each>

<!-- Inline address form -->
<render if="isFormInline" args="shippingFormTemplate" />
<render if="isFormInline" args="shippingFormTemplate"></render>
</div>
<br class="clearfix" />
</li>
Expand All @@ -38,10 +38,10 @@
<!-- ko ifnot: shouldHideShipping() -->
<div class="step-title"
translate="'Shipping Methods'"
data-role="title" />
data-role="title"></div>
<!-- /ko -->

<each args="getRegion('before-shipping-method-form')" render="" />
<each args="getRegion('before-shipping-method-form')" render=""></each>

<div id="checkout-step-shipping_method"
class="step-content"
Expand All @@ -55,28 +55,28 @@
novalidate="novalidate">

<!-- ko ifnot: shouldHideShipping() -->
<render args="shippingMethodListTemplate"/>
<render args="shippingMethodListTemplate"></render>
<!-- /ko -->

<div id="onepage-checkout-shipping-method-additional-load">
<each args="getRegion('shippingAdditional')" render="" />
<each args="getRegion('shippingAdditional')" render=""></each>
</div>
<div role="alert"
if="errorValidationMessage().length"
class="message notice">
<span text="errorValidationMessage()" />
<span text="errorValidationMessage()"></span>
</div>
<div class="actions-toolbar" id="shipping-method-buttons-container">
<div class="primary">
<button data-role="opc-continue" type="submit" class="button action continue primary">
<span translate="'Next'" />
<span translate="'Next'"></span>
</button>
</div>
</div>
</form>
<div class="no-quotes-block"
ifnot="rates().length > 0"
translate="'Sorry, no quotes are available for this order at this time'" />
translate="'Sorry, no quotes are available for this order at this time'"></div>
</div>
</div>
</li>