Hi,
In order to format the price the same way that nopCommerce does in the category page for example, you need to edit this view in the filters:
Plugins\SevenSpikes.Nop.AjaxFilters\Views\PriceRangeFilterSlider7Spikes\PriceRangeFilterSlider.cshtml
And here, where the price from the model is used:
<div class="priceRangeMinMaxPanel">
<span class="priceRangeMinPanel">
<span>@T("SevenSpikes.NopAjaxFilters.Client.PriceRangeFilter.Min"):</span>
<span class="priceRangeMinPrice">@String.Concat(Model.CurrencySymbol, Model.MinPrice.ToString("F0"))</span>
</span>
<span class="priceRangeMaxPanel">
<span>@T("SevenSpikes.NopAjaxFilters.Client.PriceRangeFilter.Max"):</span>
<span class="priceRangeMaxPrice">@String.Concat(Model.CurrencySymbol, Model.MaxPrice.ToString("F0"))</span>
</span>
</div>
<div id="slider" data-sliderMinValue="@Model.MinPrice" data-sliderMaxValue="@Model.MaxPrice"
data-selectedFromValue="@Model.SelectedPriceRange.From" data-selectedToValue="@Model.SelectedPriceRange.To" >
</div>
<div class="priceRangeCurrentPricesPanel">
<span class="currentMinPrice">@String.Concat(Model.CurrencySymbol, Model.SelectedPriceRange.From)</span>
<span class="currentMaxPrice">@String.Concat(Model.CurrencySymbol, Model.SelectedPriceRange.To)</span>
</div>
<span class="priceRangeMinPrice">@EngineContext.Current.Resolve<IPriceFormatter>().FormatPrice(Model.MinPrice)</span>
Hi,
I can see that you this is the Nop Electronics Theme v 2.5. The empty space you can see is because there is a predefined place for a banner on the left side and when it is missing there is an empty space left. In order to fix this you can either add a banner following the Nop Electronics online documentation and more precisely point 18 where you will create a banner with an exact system name "LeftSideBanner" or
you can edit the ~\Themes\Electronics\Views\Shared\_ColumnsThree.cshtml and edit the following lines as shown below:
<div class="block">
@Html.Action("Slider", "AnywhereSliders", new { systemName = "LeftSideBanner" })
</div>
remove the first and the third line in bold.
This situation has been fixed in version 2.6 of the Nop Electronics Theme.
Thanks!