Close

Profile: Support

Avatar

User posts

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>


use this method to format the price:

@EngineContext.Current.Resolve<IPriceFormatter>().FormatPrice()


for example:

<span class="priceRangeMinPrice">@EngineContext.Current.Resolve<IPriceFormatter>().FormatPrice(Model.MinPrice)</span>


I hope this is useful!

12 years ago

horaci wrote:
Hello, I try the manual intergation NopAjaxFilters 2.5 in purchased version. After modifying the file _ColumnsThree.cshtml nothing happens, after editing the file CategoryTemplate.ProductsInGridOrLines.cshtml application reports an error. The Logos, then this entry is:

Error executing child request for handler 'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerAsyncWrapper'.

~/Plugins/SevenSpikes.Nop.AjaxFilters/Themes/Gazel/Views/NopAjaxFilters/NopFilters.cshtml ~/Plugins/SevenSpikes.Nop.AjaxFilters/Views/NopAjaxFilters/NopFilters.cshtml


Hi horaci,

Could you check if this file below is present:
[i]Plugins/SevenSpikes.Nop.AjaxFilters/Views/NopAjaxFilters/NopFilters.cshtml


It should be present as it is supplied with the plugin.

Best Regards,
Nop-Templates Support Team

12 years ago

Rahul89 wrote:
The demo site works perfectly, no issues. Could the problem for me be due to the css and code changes I made? I had a few code changes in the Catalog controller and the ProductTemplate view, and after that the plugin stopped working. So I had to remove those changes.


Hi Rahul89,

My advice is to get the latest version and use the latest css as obviously the problem is not present there. Then merge your changes and you will see :)

Best Regards,
Nop-Templates Support Team

12 years ago

Rahul89 wrote:
Hi, I have downloaded the Nop Filters Plugin for Nopcommerce 2.6. I followed the steps perfectly and integrated it onto my application. It works fine, however, in the latest version of the Firefox browser, the left panel moves towards the centre of the page. In every other browser it is fine without any alignment problems. And I only find this issue in the nopClassic theme.

Does changing the code in the catalog controller actions affect the functioning of the plugin? Because I have made quite a few changes in code as well as the css files.  

Can someone please help me out here?


Hi Rahul89,

We don't see any problem on the Demo site.

Could you check the Filters on our Demo site.
http://demos.nop-templates.com/c/4/notebooks
Please note that you can change the theme from the dropdown to be nopClassic.
If you don't see this problem on the Demo, then please download the Filters again and install the latest version as probably there is something wrong with your installation.

Best Regards,
Nop-Templates Support Team

12 years ago

JonJJ wrote:
I'm testing your latest plugin jCarousel and love it!


Glad you love it :)

JonJJ wrote:

At the moment I'm customizing it to suit my theme. So I copied the NopClassic theme and renamed it to my own theme name.


Good job! This is exactly what is supposed to be done when you use it in custom themes.

JonJJ wrote:

1)
I've added it to the front page (homepage) containing the front page products and in the plugin settings you can set how many items you want in the slider.
It seems however not to work properly.
If I set it to only show 3 items, there is still 8 products showing up in the slider?

Thank you for pointing this out.
It seems that we don't limit only the Home Page Feature Products for some reason :)
We renamed it to "Maximum number of items" and now limit the Home Page Featured Products to this number. Please download the zip package again to get the new version (it should be uploaded in about an hour).

JonJJ wrote:

2)
I wish to modify the view of the carousel.
I tried copying in the "View" folder from the root folder of the plugin and into my Theme folder.
Unfortunately it does not seem to read the View under my custom theme, when I make changes to it.
It still only reads the View in the root folder of the plugin.


If you move:
SevenSpikes.Nop.Plugins.JCarousel\Views\JCarousel\JCarousel.cshtml
into:
SevenSpikes.Nop.Plugins.JCarousel\Themes\YourThemeName\Views\JCarousel\JCarousel.cs

Then it should work.

Best Regards,
Nop-Templates Support Team

12 years ago

JonJJ wrote:

Thanks you.

It was the
SevenSpikes.Nop.Plugins.AnywhereSliders\Views\AnywhereSlidersAdmin\EditorTemplates\SliderCategory.cshtml that was missing.

When I added that everything worked.


Hi JonJJ,

Thank you for clarifying this :)

Best Regards,
Nop-Templates Support Team

iqnetcom wrote:

What you need to do is open up the root of your website installation and go here:
\Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\  and copy the DarkOrange folder and rename it to the Theme you have created in Nop.

It should work fine then.

Darryl
IQNETCOM.COM


Hi Darryl,

Thank you for pointing this out. We will make the plugin to default to the DarkOrange theme when there is a custom theme rather than throwing an error.
What you have done is the right thing to do when you have a custom theme and we will update our documentation now with this information.

Thank you again for the feedback it is much appreciated!

12 years ago

JonJJ wrote:

I assume that when I uninstall your plugins, the tables created in the database are also deleted, right?


Yes, you are right. When a plugin that uses some database tables is unistalled then it deletes the tables.

JonJJ wrote:

At least that was my assumption that they were, and when I would install the plugins for 2.6 it would be a new install with newly created tables.


When a plugin that has database tables is being installed it also drops any previous tables from the database and then creates them again. We do this as some clients don't uninstall our plugins properly i.e delete the plugin from InstalledPlugins.txt file.
So you can be 100% sure that when a plugin is installed it will delete and then create the tables needed for it to function properly.
So if you have installed the plugin in 2.6 then your database should be fine and you probably have some other problem.

JonJJ wrote:

I will also check that the view file exists... thanks


Many thanks!

12 years ago

JonJJ wrote:

I just installed 2.6 Nop Cloud Zoom, first the core and then Cloud Zoom which is working great.


Now I installed Nop Anywhere Sliders 2.6 but I can't see any dropdown list of the categories when I create a slider for a category.
See screenshot.

No dropdown for category...
http://s17.postimage.org/rkhwbfasf/No_category_dropdown.png



Did you change it to be a textbox in 2.6?

If so, how do I map it to a category?





Hi JonJJ,

It is still a dropdown we haven't changed it.
Could you check if this view file exists:
SevenSpikes.Nop.Plugins.AnywhereSliders\Views\AnywhereSlidersAdmin\EditorTemplates\SliderCategory.cshtml

Also did you run the upgrade script for the Sliders if you have upgraded from 2.5?

Best Regards,
Nop-Templates Support Team

Bugs
12 years ago

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!