missing class="inner-wrapper" in login view For User Registration Disabled text

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
1 ano atrás
line 33:
                <div class="new-wrapper">
                    <div class="title">
                        @T("Account.Register")
                    </div>
                    <div class="text">
                        @T("Account.Register.Result.Disabled")
                    </div>
                </div>


should be:

                <div class="new-wrapper">
                    <div class="title">
                        @T("Account.Register")
                    </div>
                    <div class="inner-wrapper">
                        <div class="text">
                            @T("Account.Register.Result.Disabled")
                        </div>
                    </div>
                </div>
1 ano atrás
It looks like the inner-wrapper is third-party style. There is no out-of-the-box declaration with this name.
1 ano atrás
Yes you are right, NopTemplates-Pavilion.
1 ano atrás
Thanks for reporting it,
it is now fixed for version 4.50, we will also fix it for 4.30 and 4.40.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.