Close

Profile: IvanStoyanov

Avatar

User posts

11 years ago

rgujral wrote:
Thanks. I know all these are configurable items and can be turned ON and OFF.

My question was if I turn off "Contact Us" because I am running short of space on mage menu and I do not want to add another row of menu, but at the same time, I want to have contact us information at home page for users in case they wish to contact us, else there is not way they can raise their queries.

Please suggest.

Raminder


You can add a link to the "Contact Us" topic in the footer.
To do this go to \Themes\ShopAll\Views\ShopAllCommon\ and open the FooterInfoBlock.cshtml view.

go to line 35 and find the following line of code:

<li><a href="@Url.RouteUrl("Topic", new { SystemName = "aboutus" })">@T("AboutUs")</a></li>


after it add the following code:

 <li>|</li>
<li><a href="@Url.RouteUrl("Topic", new { SystemName = "contactus" })">@T("ContactUs")</a></li>


Best regards,

Ivan Stoyanov

rgujral wrote:
Thanks.

What does that MegaMenuTopic is for on the menu bar ?

I am just wondering how better I should use this than having it another option similar to 'Contact Us', 'Blog' etc ?

Can I use it in some meaningful way, but I really do not know that meaningful thing if you know of any other sites using this and for what purpose would certainly help.

Regards,


Hi rgujral,

You can use the Mega Menu Topic to display information, offers, etc. in the Mega Menu. Because it is a topic it is easily editable and customizable. You can hide it from the settings in the Mega Menu plugin.

Also we highly recommend reading our online documentation. It can help you understand our plugins and will show you how to configure them.

http://www.nop-templates.com/t/nopCommerce-Documentation

Ivan Stoyanov

11 years ago

rgujral wrote:
Hi,

I want to turn off "Contact Us" from Mega Menu and would like to show this on the bottom of the page along with "About Us" and any other policy links.

Is it possible to turn off Mega Menu items from Mega Menu and have them at bottom...like other item Blog which is turned off but then it is off from the page itself which is not good ?

Regards,


Hi

Yes you can manage all items that are shown in the Mega Menu plugin from the administration.
Please read our online documentation for more information.

If you want to add links to the footer, you need to do it manually.

Ivan Stoyanov

11 years ago

Alex_ wrote:
Hi
I do have   big customers wishlists, so very nice to have a Nop Ajax Filters on wishlist items .
Is it possible to use  Nop Ajax Filters on Wishlist?

Regards.
Alex


Hi Alex,

At the moment the Nop Ajax Filters plugin does not support wishlist items. You can suggest this feature in our User voice portal and we will consider implementing it in the future.

Regards,

Ivan Stoyanov

zjerry wrote:
I tried that line:

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



Unfortunately this couses a compilation error:

CS0103: Name „EngineContext” does not exist in current context.

So I've added the:

@using Nop.Core.Infrastructure

at the top of the view.

Now I'm receiving this error:

CS1502: invalid arguments exists in the best suited overloaded method „System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)”




Hi zjerry,

Add the following usings:


@using Nop.Core.Infrastructure;
@using Nop.Services.Catalog;


Change
@{
    Html.AddScriptParts("~/Plugins/SevenSpikes.Nop.AjaxFilters/Scripts/PriceRangeFilterSlider.min.js");
}


to look like this:

@{
    Html.AddScriptParts("~/Plugins/SevenSpikes.Nop.AjaxFilters/Scripts/PriceRangeFilterSlider.min.js");
    var priceFormatter = EngineContext.Current.Resolve<IPriceFormatter>();
}


and use the price formatter like this:

<span class="priceRangeMinPrice">@priceFormatter.FormatPrice(Model.MinPrice)</span>


<span class="priceRangeMinPrice">@priceFormatter.FormatPrice(Model.MaxPrice)</span>


Ivan Stoyanov

11 years ago

zjerry wrote:
Where can I localize the popup with "NO RESULT FOUND" information?


Hi zjerry,

Thank you for reporting this. It appears that the "NO RESULT FOUND" popup was not localizable. We configured it, so that it can be localized.

Please download the package from our website and replace the following files with the ones in the package:

/Plugins/SevenSpikes.Nop.AjaxFilters/Resources/Resources.en-us.xml
/Plugins/SevenSpikes.Nop.AjaxFilters/Scripts/Filters.min.js
/Plugins/SevenSpikes.Nop.AjaxFilters/Themes/NeoFashion/Views/Catalog7Spikes/CategoryTemplate.ProductsInGridOrLines.cshtml
/Plugins/SevenSpikes.Nop.AjaxFilters/Views/Catalog7Spikes/CategoryTemplate.ProductsInGridOrLines.cshtml


After that please restart the website application, so that the new resources can be installed.
You can localize the following resources:

SevenSpikes.NopAjaxFilters.Client.Common.NoResultsFoundTitle
SevenSpikes.NopAjaxFilters.Client.Common.NoResultsFoundMessage


Regards,

Ivan Stoyanov

11 years ago

Jeff wrote:
Will this theme be getting the Theme Roller?


Hi Jeff,

We will add the Theme Roller to the Neo Fashion theme in the 3.00 version of nopCommerce. We expect it to be released in 1-2 weeks.

Ivan Stoyanov

MAINPAGE
11 years ago

zjerry wrote:
Where can I localize the MAINPAGE string that appears when the 'Include "Home Page" link' option is checked?


Hi zjerry,

To localize the HomePage resource you need to go to the administration of your nopCommerce website, Configuration => Languages and click View string resources next to your language. After that search for resource HomePage and set the value.

Ivan Stoyanov

swinstead wrote:
Hi,

Using the trial version of Anywhere Sliders, I was able to create a Nivo slider in the sidebar that was of a certain size.

I purchased the pro version and installed only the DLL.

At that point, the slider in the sidebar began to render very big images.

When I looked at the Nivo general settings for the slider, I saw that height and width no longer appeared.

I then saw that the files from the Pro download were different from the files in the trial download. So I migrated over the new set of files.

That did not have any effect.

Finally, I uninstalled both the Core and Anywhere Slider plugins, then re-installed them.

The only effect that had was to delete my existing sliders. Argh.

I added back one of the sliders and saw that I still cannot set the height and width of the slider.

How do I correct this situation?


Hi swinstead,

Please read the following post http://www.nop-templates.com/nop-anywhere-sliders-plugin-updated-to-use-the-latest-responsive-version-of-nivo-slider.

We have updated the nivo sliders to the latest version (which is responsive). In order for the slider to be responsive we removed the width and height settings (the slider will be as height and width as the picture that is displayed).
You can configure the dimensions of the pictures in the slider or you can go to Plugins/SevenSpikes.Nop.Plugins.AnywhereSliders/Views/AnywhereSliders/NivoSlider.cshtml
and change the following line:
<div class="slider-wrapper theme-@skin">


to look like this:

<div class="slider-wrapper theme-@skin" style="width: 700px; height: 300px;">


replace the width and height values to your desired values.

Ivan Stoyanov

11 years ago

mstuart wrote:
Is it possible to assign tabs to select category pages?  ...or product pages only?

Tabs on category pages would be a nice addition.


Hi mstuart,

Currently the Nop Quick Tabs plugin does not have the functionality to be added to a category page.
Can you give us more information on where do you want the tabs on the category page to be used? Do you want the category description to be in a tab?

Ivan Stoyanov