Nopcommerce v2.30

I am new to nopcommerce. I downloaded Nop V2.3. The problem is that I want to edit the page, but I don’t know how to add plugins, how to create it. How to change threads by code. How to remove plugins that I will not use?

How to specify price tags for each product i?

I don’t even find a good tutorial to start with nopcommerce for beginners like me. I saw your posts, so I thought you could help me.

I know mvc a bit and Csharp asp dot net. Therefore, if you lead me to begin. I will be happy.

I really did not find a clue to get started. c .... for editing nopcommerce codes.

+4
source share
6 answers

NopCommerce 2.0 has been completely rewritten, and all documentation has not yet been updated. You can follow the documentation for the new version at http://nopcommerce.codeplex.com/workitem/7653

Removing plugins

You can remove plugins by simply removing the ones you don’t need from the Plugins folder.

Thematic

Look in the Themes folder in your Nop.Web project to find out how themes are implemented.

+2
source

Add plugins : you can use this link. and then go to Admin site ---> Configuration ---> Plugins. There you can manage your plugin. Or you can use the existing plugin in the folder plugins and rewrite it according to your needs, just like me.

Delete plugins : Admin site ---> Configuration ---> Plugins ---> delete the selected plugin.

+1
source

I recently started with nopCommerce, and most importantly, have some knowlegde about the methods used (ASP.NET MVC, Depenecy Injection, ORM (EF)).

The links below also helped me get started with nopCommerce.

Using nopCommerce

NopCommerce User Guide - Not free BTW, but in this way you support the project.

Extending / Configuring NopCommerce

http://blog.csharpwebdeveloper.com/2011/09/27/cheat-sheet-for-effectively-extending-nopcommerce/ http://blog.csharpwebdeveloper.com/2011/09/10/writing-a-plugin- for-nopcommerce-2-x / http://blog.csharpwebdeveloper.com/2011/09/10/updating-an-existing-entity-in-nopcommerce-2-0/

Update: The links seem to be dead. Unfortunately

0
source

U can modify the contents of home, contactus, aboutus in the part of the administrator backend, Content Management / Topic.

0
source

Adding plugins

You can add plugins by simply adding the ones you need to the Plugins folder. Then click "Install" in the admin backend.

Thematic

Look in the Themes folder in your Nop.Web project to find out how themes are implemented. U can change the theme in settings / general and different settings

U can modify the contents of home, contactus, aboutus in the part of the administrator backend, Content Management / Topic.

0
source

Source: https://habr.com/ru/post/1382828/


All Articles