I'm trying t track down what is breaking the rest of a layout on the OSEL page. Since the site is behind a password protected directory, I can't share the link. On an off chance, I went and looked at the Miva demo for the ReadyTheme. To see the issue, go to https://suivant-theme.mivamerchantdev.com, add something to the cart and checkout. Notice the Global Footer when you get to the OSEL screen (checkout-special-offers.html).
When I inspect the code, I see it adding a bunch of
When I view source, it looks like an extra </div> tag might be being added:
Then the issue seems to multiple in the address section and disrupts everything after that:
After digging through the code in the OSEL Basket Content section, I discovered a second <small> tag instead of a closing </small> tag around line 43
The same problem exists in the OPAL Basket Content section.
Change the second <small> to </small> to fix the problem.
When I inspect the code, I see it adding a bunch of
Code:
<small> <small> </smal> </small>
Code:
<div class="column one-fourth align-right nrp nlp"> $129.90<br /> <small><s>$158.95</s><small><br /> <br /> <br /> </div> </div>
Then the issue seems to multiple in the address section and disrupts everything after that:
Code:
<div class="basket-product-row"> <p class="column whole h6">Ship To:</p> <address class="column whole"> <strong>Test Order</strong><br /> 1234 Your Way Our Town, AL 35124 US<br /> <small>Residential Address</small><br /> Email: [email protected]<br /> Phone: 8888888888<br /> </address> </div> <div class="basket-product-row"> <p class="column whole h6">Bill To:</p> <address class="column whole"> <strong>Test Order</strong><br /> 1234 Your Way Our Town, AL 35124 US<br /> Email: [email protected]<br /> Phone: 8888888888<br /> </address> </div> </div> </div> </div> <div class="row hdft-footer"> </div> </div> </div> <!-- end column-right --> <!-- end column-left --> </div> <!-- end main --> <div class="bottom-wrap"></div> <!-- end bottom-wrap --> </div> <!-- end wrap --> </main> <!-- end main --> </div> <!-- end site-wrapper -->
After digging through the code in the OSEL Basket Content section, I discovered a second <small> tag instead of a closing </small> tag around line 43
Code:
<mvt:if expr="l.settings:group:subtotal_base_price NE l.settings:group:subtotal">
&mvt:group:formatted_subtotal;<br />
<small><s>&mvt:group:formatted_subtotal_base_price;</s><small><br />
<mvt:else>
&mvt:group:formatted_subtotal;<br />
<small> </small><br />
</mvt:if>
Change the second <small> to </small> to fix the problem.
Comment