Close

Profile: SDobrev

Avatar

User posts

Hello,

Could you please submit a ticket and tell us exactly what version of the theme you are using?

Thank you.



Hi,

Could you please submit a ticket with URL to your store so we can investigate the problem.

Thank you.

9 years ago

Hi,

I answered to your ticket but I will also copy the answer here so the others can see it.

NopCommerce search engine takes into account the product to category mapping display order only if there is a "Category" specified from the Advanced search.

It is the same with the Manufacturer mapping display order. If there is manufacturer specified from the Advanced search than the products will be sorted by Display order after the search.

Here is the part of the stored procedure for the sorting:


--sorting
SET @sql_orderby = ''
IF @OrderBy = 5 /* Name: A to Z */
SET @sql_orderby = ' p.[Name] ASC'
ELSE IF @OrderBy = 6 /* Name: Z to A */
SET @sql_orderby = ' p.[Name] DESC'
ELSE IF @OrderBy = 10 /* Price: Low to High */
SET @sql_orderby = ' p.[Price] ASC'
ELSE IF @OrderBy = 11 /* Price: High to Low */
SET @sql_orderby = ' p.[Price] DESC'
ELSE IF @OrderBy = 15 /* creation date */
SET @sql_orderby = ' p.[CreatedOnUtc] DESC'
ELSE /* default sorting, 0 (position) */
BEGIN
--category position (display order)
IF @CategoryIdsCount > 0 SET @sql_orderby = ' pcm.DisplayOrder ASC'

--manufacturer position (display order)
IF @ManufacturerId > 0
BEGIN
IF LEN(@sql_orderby) > 0 SET @sql_orderby = @sql_orderby + ', '
SET @sql_orderby = @sql_orderby + ' pmm.DisplayOrder ASC'
END

9 years ago

Hi Iva,

The Bestsellers grid that you are talking about looks like JCarousel, but it is custom code specially for the Pavilion theme. This carousel is made by Owl Carousel.

Bugs
9 years ago

nopnopgogo! wrote:
Hi, there are a little bug in admin section of this plugin. If you set a carousel with Additional Manufacturers and then click 'Show', you'll get a 'not found page' 'cause you ask for 'Admin/ManufacturerId/Edit/' instead of 'Admin/Manufacturer/Edit/'. Thank you.


Hi,
Thank you for reporting this issue. It had been fixed and uploaded on our site.
You can update your plugin following this article: https://www.nop-templates.com/how-to-update-a-nopcommerce-plugin

Best regards!