Find bugs in nopCommerce 4.40 BETA and earn $10

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 anni tempo fa
After buy some thing and go to cart then checkout
First step is add billing address
After selecting country all cities well loading
and show (Loading icon with wait) but after loading it doesn't hide again
3 anni tempo fa
mhdcindioglu wrote:
When I install NopCommerce I chosen Turkish Language
After Application started I changed  language from Tr to En
Language changed successfully Then I tried to add new user
Months name still in Turkish and not changed to En
Why?

Thanks! We'll check - https://github.com/nopSolutions/nopCommerce/issues/5468
3 anni tempo fa
mhdcindioglu wrote:
After buy some thing and go to cart then checkout
First step is add billing address
After selecting country all cities well loading
and show (Loading icon with wait) but after loading it doesn't hide again

Thanks. Already reported and fixed
3 anni tempo fa
In admin > settings > general settings > seo I have selected the page name then store name option; however, the default page title appears twice on the home page. Other pages, such as category show the default-page-title.category-name. Surely this should be category.store-name? Why is the default name appearing in this way could it be an error or a setting?
3 anni tempo fa
The new version is a good news, thanks
3 anni tempo fa
[email protected] wrote:
In admin > settings > general settings > seo I have selected the page name then store name option; however, the default page title appears twice on the home page. Other pages, such as category show the default-page-title.category-name. Surely this should be category.store-name? Why is the default name appearing in this way could it be an error or a setting?


Details here.
3 anni tempo fa
The filename casing in the AdminLTE library has changed. In order to support case sensitive web servers (I'm running the net5.0-alpine docker image) line 58 of _AdminLayout.cshtml needs to change from:

Html.AppendCssFileParts("~/lib_npm/admin-lte/css/AdminLTE.min.css");


to:

Html.AppendCssFileParts("~/lib_npm/admin-lte/css/adminlte.min.css");


Edit:
This only seems to be an issue after installing dependencies via gulp. It appears that the library already installed in the 4.4 beta source code download was still using the AdminLTE.min.css filename (even though they are both the same version - v3.0.5).
3 anni tempo fa
purplepiranha wrote:
The filename casing in the AdminLTE library has changed. In order to support case sensitive web servers (I'm running the net5.0-alpine docker image) line 58 of _AdminLayout.cshtml needs to change from:

Html.AppendCssFileParts("~/lib_npm/admin-lte/css/AdminLTE.min.css");


to:

Html.AppendCssFileParts("~/lib_npm/admin-lte/css/adminlte.min.css");


Edit:
This only seems to be an issue after installing dependencies via gulp. It appears that the library already installed in the 4.4 beta source code download was still using the AdminLTE.min.css filename (even though they are both the same version - v3.0.5).


Yes you are right, here is the link to the work item.
3 anni tempo fa
Update css code in file https://localhost:44388/css/admin/styles.rtl.css line 913
in this page https://localhost:44388/Admin/Common/Maintenance to correct date input in RTL situation.

Like this:


.k-picker-wrap.k-state-default > .k-select {
    background: #fff;
    border: 1px solid #d2d6de;
    height: 36px;
    width: 4.5em;
<--Add from here
    left: 0;
    right: unset;
To here-->
    padding-right: 1px;
    -moz-box-sizing: content-box;
}
3 anni tempo fa
mhdcindioglu wrote:
Update css code in file https://localhost:44388/css/admin/styles.rtl.css line 913
in this page https://localhost:44388/Admin/Common/Maintenance to correct date input in RTL situation.

Thanks! Fixed.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.