Close

Profile: anton_ivanov

Avatar

User posts

Bugs
7 years ago

Hello,

Please submit a ticket with your admin credentials so we can investigate this issue and so we can see the errors you are getting?

Bugs
7 years ago

Hello,

We have found the cause of this problem and we are working on fixing it.
I will respond to this post when we are ready. This should be ready in the first couple of days of next week.

We are sorry for the inconvenience caused.

Bugs
7 years ago

Hello,

Could you try to clearing your browser cache and your nopCommerce application cache?

7 years ago

Hello,

You will have to create a search widget. After you create a widget, copy the page link and extract the id from it.
e.g. : https://twitter.com/settings/widgets/828540989769932801/edit
That is the id of your widget.

Hope that helps!

Bugs
7 years ago

Hello,

You can edit each menu item in your mega menu. The Category Menu Items have a setting called "Template". If you set it to "With Pictures" or "List" the categories will appear in the side menu, if you set it to "Simple" the categories will appear on the top menu ( and will not have a dropdown).

You can read more about the Mega Menu administration in the Mega Menu Documentation.

Your side menu will cease to work if you have no items in it. If you do not have Category Menu Items with the Template of "With Pictures" or "List" you will not have any items in the side menu.

I cannot seem to understand your problem, it seems. Can you give me some visual representation, maybe a link to your store or a picture?

Bugs
7 years ago

Hello,

Can you check if you have Category Menu Items with Template "With Pictures" or "List" in your menu?

In Pavilion the only menu items that can be displayed in the side menu are Category Menu Items with template "With Pictures" or "List".

Hope that helps!

Hello,

If you want to show news on the home page you will have to go to Administration -> Configuration -> Settings -> News Settings and check the "News enabled" setting.

As for the "Hot" section: The products shown there are best sellers. You will have to have products that have been ordered in order to have that section.

Hope that helps!

7 years ago

Hello Lin,

The Latest Offers are controlled by the Smart Product Collections plugin. In order to edit it you will have to go to Administration -> Nop-Templates -> Plugins -> Smart Product Collection -> Product Collections. There you would have to edit the Latest Offers product collection and remove the tabs you desire from the Tab Builder that is located on the bottom of the Edit Product Collections page.

Hope that helps!

Bugs
7 years ago

Hello,

It seems you have duplicate data in your database. Please open your database and check the dbo.SS_C_EntityCondition table for any duplicate data and delete if any exists.
This should solve your problem.

Hope that helps!

7 years ago

Hello Konstantinos,

This is how you distinguish different topic pages:

You can use the following code to ensure you are on a topic details page. If you are both of those rows should return true.
Url.RequestContext.RouteData.Values["controller"].ToString().Equals("Topic", StringComparison.InvariantCultureIgnoreCase)
        Url.RequestContext.RouteData.Values["action"].ToString().Equals("TopicDetails", StringComparison.InvariantCultureIgnoreCase)


Also, the topic details page uses the TopicModel. You can distinguish between topic pages by their Title(Model.Title) or SystemName(Model.SystemName).

Hope that helps!