nopcommerce 4.40 safari android

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
2 anni tempo fa
when I log in as a user on an android tablet, a text box pops up "Do you want to download the login file?" how do i remove it
2 anni tempo fa
Try to login with another browser.
2 anni tempo fa
1.change default route
GenericUrlRouteProvider.cs under Nop.Web.Infrastructure namespace file by changing below,

endpointRouteBuilder.MapControllerRoute(
                name: "Default",
                pattern: "{controller=Home}/{action=Index}/{id?}");
2. change path
@inject IHttpContextAccessor httpContextAccessor
@inject IWebHelper webHelper
@{
    Layout = "_ColumnsOne";
    var path = httpContextAccessor.HttpContext.Request.Path;
  <form asp-route="Prihlas" asp-route-returnurl="@path" method="post" autocomplete="off">

this work ok for nopcommerce 4.4
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.