@model ProductDetailsModel
@using Nop.Services.Localization
@inject ILocalizationService localizationService
@if (!string.IsNullOrWhiteSpace(Model.StockAvailability) || Model.DisplayBackInStockSubscription)
{
<div class="availability">
@if (!string.IsNullOrWhiteSpace(Model.StockAvailability))
{
bool outOfStock = string.Equals(localizationService.GetResource("products.availability.outofstock"), Model.StockAvailability, StringComparison.InvariantCulture);
string stockClass = "is-in-stock";
if (outOfStock)
{
stockClass = "is-out-of-stock";
}
<div class="stocking @stockClass">
<span class="label">@T("Products.Availability"):</span>
<span class="value" id="stock-availability-value[email protected]">@Model.StockAvailability</span>
</div>
}
@await Html.PartialAsync("_BackInStockSubscription", Model)
</div>
}
Hi,
I think it would be a good idea to add a product feature so as to be able to choose a display color for product stock status.
As in if a products stock status would be;
In Stock - You could choose for it to appear with green letters.
Out of Stock - You could choose for it to appear with red letters.
Best regards,
OTH
Hi I was wondering if it's possible to add a "Custom List" under Category Product Collections?
This is possible for Custom Product Collections, but it would be very convenient if it would also work for Category Product Collections so admins can choose which product to display on the home page under different categories.
Your input would be very much appreciated.
One suggestion.
To be able to put a logo on both left and right side of the footer on the page (Same line a payment-sprite)
This would come in handy if you wanted to add a logo from "Symantec" for example on the right side to show the customer the website is secure.
And on the left side to put a logo from someone that has given the company a certificate to do some sort of business (Like dealing with animals or food).
Hi,
I wanted to know if someone can tell me how to remove the "search" tab from the menu bar?
There is already a search bar below it and I don't really want to have a tab/button also.
Any help is appreciated.
Regards,
Odinn Thor
Hi,
I was wondering if you could tell me if and where I can change the size of the "payment-stripe" at the footer of the page?
The reason why I need this is because the company offers 7 different card payment options and it would be better to be able to have just a little bit bigger photo instead of making the logos even smaller than they are already.
Please advice.
Regards,
Odinn Thor
Hi,
I was wondering if there are some calculating bugs on the theme regarding taxes?
I put the default tax as 24% (Which we use in Iceland) but it seems to be calculating the tax incorrectly...
If I buy a product in 200.000 ISK (Icelandic Krona) then the tax should be 48.000 ISK.
But it will show instead that the tax is: 38.710 ISK.
Please advice.
Regards,
Odinn Thor
Hi,
I was wondering if there is a possibility to have two different logos for desktop version and mobile/tablet version?
The thing is that the logo that we use is in the color: #F41921
But the thing is that the website itself is also in those colors, the navigation bar etc.
It looks and works perfectly well with the desktop version, but you would go to the mobile version then the logo basically disappears.
So I was wondering if it's possible to have one logo for the desktop version in the color mentioned above and the mobile/tablet logo in white for instance.
Please advice.
Regards,
Odinn Thor