Close

Profile: iliyan.tanev

Avatar

User posts

8 years ago

Hi,

Would it be possible to open a ticket by providing us with admin credentials and your document.

Thanks!

Bugs
8 years ago

Hi,

This is the picture tab. It comes from QuickTabs plugin. By default, it is always enabled, but a while back we have added a hidden setting from where you can disable it.

If you want you can disable it from Configuration -> Settings -> All Settings and from there use the grid search to find the settings named tabsettings.enableproductpicturetab and set its value to false.

Hope this helps!

Bugs
8 years ago

Hi,

Quick View is available only on category, manufacturer, vendor pages and home page. It is not available on product details pages because you already have all the product info in there.

8 years ago

Hi,

I suppose you have done the following:

1) Write you text in work adding bold and italic formatting on some places
2) Copy and paste your text in nopCommerce text editor
3) Try to add a few spaces between the bold and italic words

Can you try to write your text on Wordpad for example, and use the text from there? 

8 years ago

Hi,

I suppose it is from Word. Sometimes Word adds additional text formatting. Have you tried using a different program to edit your text? 

8 years ago

Hi,

Actually, now you can add your own sorting options without the code of the stored procedure. A while back we created a seven_spikes_ajax_filters_product_sorting function because there were many requests for adding custom sorting options. 

Now to add a new sorting option you will have to:

1) Add your new sorting option in the ProductSortingEnum that you can find at Nop.Core -> Domain -> Catalog (i.e. Rating = 20).

2) Open the seven_spikes_ajax_filters_product_sorting function from yourDatabase -> Programmability -> Functions -> Scalar-valued Functions.

3) Add the Rating case in there:

....
IF @OrderBy = 20
    SET @sql_orderby = ' p.[ApprovedRatingSum] DESC'
ELSE
....


and run the query using F5 so the function could be altered.

That's it! Now the new sorting option will be available in the dropdown and will sort your products by their rating.

Hope this helps!

8 years ago

Hi,

We are not overriding the PrepareProductOverviewModels.

You should make your changes directly in the base PrepareProductOverviewModels from the CatalogController otherwise, there is no way for our filters to call your method.

Hope this helps!

8 years ago

Hi,

You need to do the following:

1) Create new attribute from Catalog -> Attributes -> Product Attributes
2) Go to some product in the Product Attributes tab and click on Add new record
3) From the Attribute dropdown select your attribute and from the Control type dropdown select Color Squares and click Update.
4) When the attribute mapping is created you will see View/Edit values link, click it and Add a new value. In the popup, you will be prompted to select color, name, etc.

That's it!

8 years ago

Hi,

For some reason, you have two elements with class instantSearchResourceElement. There should be only one. I suppose you have done some custom modifications trying to integrate the Instant Search plugin more than once on your home page. Unfortunately, the plugin can not be integrated more than once. 

Maybe you have tried to add additional widget zone in the SupportedWidgetZones.xml file that can be found in the plugin folder? 

For the per store integration of the default nop search box: you can restrict it per store using the store id that you can get in the view with the following code:

var storeId = EngineContext.Current.Resolve<IStoreContext>().CurrentStore.Id;


and then the code for the search box will look something like this:

if(storeId != someStoreId) {

<li class=home-search-box>
    <center>@Html.Action("SearchBox", "Catalog")</center>
</li>

}


Hope this helps!

8 years ago

Hi,

The View that you should be modifying is Views/Blog/BlogPost.cshtml. If the changes are not visible in the public area, after editing this view, maybe you are using a theme that overrides the blog post view. In this case, you should find the view in the theme and do your changes there.

Are you using one of our themes?