Close

Profile: softwarereg

Avatar

User posts

Bugs
4 years ago

When the Nop Mega Menu (Version: 4.0) generates an <li> for a menu item such as the one below, it leaves space at the end of the class name that is added to the <li>. This is being flagged as non standard (https://www.w3.org/TR/html4/types.html#type-id) by some parsers.


<li class="Some-Class ">
<a href="https://www.MyURL.com/MyPage.html" title="MyTitle">
    <span>
       My Link
    </span>
</a>
</li>

I'm looking for a way to hook into the creation/modification of shipping and billing addresses during the checkout process, so that I may validate them using a 3rd party address verification service.

The way in which I normally intercept the creation and modification of addresses is by using Nop's "IEventConsumer" to suscribe to the "ModelReceived" event.

Thanks in advance!