Close

Profile: SDobrev

Avatar

User posts

Hi,

The vendors don't have ratings out of the box. Adding this feature will require custom modifications to the nopCommerce source code.

Bugs
6 years ago

Hi,

In Filters.min.js before parsing JSON you should check if the parsed variable has a value like you have done it.

Also, you should replace .attr('selected') and .attr('checked') with .is(':selected') and is(':checked').

I saw in the history we also have updated the jquery.address-1.5.min.js to version 1.6.

6 years ago

Hi,

The "Products From The Same Category" data source works only on the product details page.

Products From The Same Category - this data source is compiled from the products that are mapped to the category of the product that the customer is seeing. The data source will have products only on the product details pages.

In our documentation, you will find out more information about how to configure the plugin.

Bugs
6 years ago

Hi,

If you have made any modifications to the nopCommerce ProductController constructor please revert them and use property injection instead of constructor injection.

Bugs
6 years ago

Hi,

Please update the Quick Tabs plugin to the latest version and the problem should be resolved.

6 years ago

Hi,

You will find the mappings in the SS_MAP_EntityMapping table. The Attachments EntityType is 5.

6 years ago

Hi,

This will require modifications because the plugin integrates to the pages via widget zones but in the topic page, there aren't any.

You have to add a new custom widget zone to the TopicDetails.cshtml page and add the same widget zone to the AnywhereSliders SupportedWidgetZones.xml.

Here is the code for adding a widget zone in the topic view. It is for nopCommerce 4.1 if you are using an older version the code for adding a widget zone will be different but you can find it in the other views:

@await Component.InvokeAsync("Widget", new { widgetZone = "your_custom_widgetzone" })

and here is what you have to add in the SupportedWidgetZones.xml of the plugin:

<WidgetZone>your_custom_widgetzone</WidgetZone>

Bugs
6 years ago

Hi Cédric,

Sorry for the late reply.

The grid doesn't support changing the items per page but if the "adminareasettings.defaultgridpagesize" setting is set to 10 and you have 11 articles there should be paging at the bottom of the grid list.

If the paging is missing or not working could you please tell us the exact version of the plugin you are using. You can find it in Nop-Templates -> System information.

Thank you!

6 years ago

Hi,

You should add something like this:

extended_valid_elements.Add("meta[content|dir<ltr?rtl|http-equiv|lang|name|scheme]");
valid_children.Add("+body[meta]");

Please note we haven't tested this solution. In the TinyMCE documentation, you will find out more information about the additional configuration.

https://www.tiny.cloud/docs/

6 years ago

This happens because of the nopCommerce Rich Text Editor. By default, it is escaping the meta tags. This editor is used all over nopCommerce administration including the Nop Html Widgets plugin.

The Rich Text Editor initializing can be found in the Views\Shared\EditorTemplates\RichEditor.cshtml. In the file, you will find examples of how to allow Javascript and Style tags. Use these templates to allow meta tags.