Close

Profile: SDobrev

Avatar

User posts

6 years ago

Hi,

Find the "Store" table in your database and manually set the "SslEnabled" to false.

6 years ago

Hi,

If you want a specific carousel to be in 2 rows you can set the raw parameter only if the carousel is with specific Id. In the JCarousel.cshtml view you will find the Id in the Model.Settings.Id

6 years ago

Hello,

The images of the items in the carousel are resized according to the "Product thumbnail image size (catalog)" setting in the category settings. You can try to change the default image quality or check the image size.

It is not possible to filter the carousel items based on the category. The solution is to create manually different carousels for each category.

If by text pages you mean topics in the moment it is not supported by default. You can add a new widget zone in the SupportedWidgetZones of the file and include this widget zone in the topic view only if a condition is true (topic name equal to something).

6 years ago

Hi,

Unfortunately, the source code of the JCarousel plugin is not open for modifications so you cannot modify the "JCarouselEntitySetting" class.

You can create a hidden setting from the All Settings page ("JCarouselCustomSettings.NumberOfRows" for example) and use it in the "\SevenSpikes.Nop.Plugins.JCarousel\Views\Components\JCarousel\JCarousel.cshtml" view.
Code example for nopCommerce 4.0:

@inject ISettingService settingService
@inject IStoreContext storeContext

@{
    var storeId = storeContext.CurrentStore.Id;
    var numberOfRows = settingService.GetSettingByKey("JCarouselCustomSettings.NumberOfRows", 1, storeId, true);
}


Hi,

The Category filter is not added by the Ajax Filters plugin. It is nopCommerce functionality and this is the reason why the plugin can't hide it.

Hi,

Please suggest your idea in our UserVoice portal and if the users vote up for it we will consider implementing this feature.

6 years ago

Hi,

The resource is missing. By default, it is added by the theme automatically on installation.

You can manually add it from Configuration -> Languages -> Edit -> String Resources. Create a new one with "Sevenspikes.Themes.Admin.ManageResources.Traction" name and "Manage Resources" value.

Hi,

There are no problems if you have added new methods.

If you have modified the constructor of the ProductService you should revert your changes and resolve the dependencies using property injection.

Hello,

This problem is already fixed in version 3.4.

6 years ago

Hello,

You can sort the filter panels and filter options by Display Order.

To change the display order of the specification attributes go to Catalog -> Attributes -> Specification Attributes. On that page, you will find the display order of the specification filter panels. If you want to change the display order of the specification options click Edit and go to the Options tab.

The Product Attributes display order in on the product edit page. Please note you should edit all products that are using specific attribute.

For example, if you have 2 products with Size attribute you should edit the display order of the attribute on both of the products.