Close

Profile: Oakstone

Avatar

User posts

Hristian,

We have not upgraded nopcommerce. We started with 3.2. The code snippet was from instantSearch.cshtml.

Sorry. Found another issue after updating our lighthouse 3.2 template. The version of kendo it uses is from 2014, and those were not installed. Where can we get the following js files?

    Html.AddScriptParts("~/Scripts/kendo/2014.1.318/kendo.core.min.js");
    Html.AddScriptParts("~/Scripts/kendo/2014.1.318/kendo.data.min.js");
    Html.AddScriptParts("~/Scripts/kendo/2014.1.318/kendo.popup.min.js");
    Html.AddScriptParts("~/Scripts/kendo/2014.1.318/kendo.list.min.js");
    Html.AddScriptParts("~/Scripts/kendo/2014.1.318/kendo.autocomplete.min.js");

Great. Got the new version and it works.

Thanks.

When the search list appears after you type text into the search box, is it possible to NOT select the first item in the list. Our goal is to product the list. If a user hits enter, then it goes to the advanced search. We have the second part working, but thought auto selecting the first item in the list would be option able.

We are using the Lighthouse theme 3.2.

Thanks.

9 years ago

Just FYI. I had to update the TopicDetails.cshtml file to add the widget. It worked fine.

9 years ago

Thanks. I thought I would ask to see if this could be done without editing cshtml.

I've got the title displaying. Just need to make the CSS mimic the lighthouse now.

Thanks.

9 years ago

We are using the jcarousel to display products on the home page and we like how the product title is static about the image for Featured Products (http://themes.lighthouse.nop-templates.com/). Is there a way to do display the product title with the carousel?

I'm assuming some editing needs to be done with jcarousle.cshtml. No way just to do it with CSS.

Thanks.

9 years ago

I want to create custom menu items that are editable in the admin area. This way we do not need update code when users want to add items. I've added a widget zone in SupportWidgetZones.xml and added the zone in MegaMenu.cshtml. I've created the widget and it appears in the menu.

The issue is the that tinymce autocorrects the HTML. For example
<li><a href="mylink">my link text</a></li>
is converted to
<ul>
li><a href="mylink">my link text</a></li>
</ul>

Any thoughts on how to turn off the autocorrect or how to add a widget as a menu item correctly?

Thanks.

9 years ago

I'm reviewing the code (not a full time coder) but I think I can edit the CategoryMenuTemplate.WIthoutPictures.cshtml and use the variable model.ShowOnHomePage or model.IncludeInTopMenu. I'll respond back how things go.

9 years ago

On the category admin page, there is an option 'include in top menu'. Can this be used to limit what displays in the Mega Menu? For example, I only want to display 3 of the 4 parent categories I have.

Thanks.