Questions tagged [nopcommerce]

Open source E-commerce Shopping Cart Solution based on ASP.NET MVC and Entity Framework. Notable differentiators are multi-store and multi-vendor capabilities.

nopCommerce is an open source e-commerce solution that is .NET 6 based (C#) with a MS SQL 2008 (or above) or MS SQL Compact 4.0 (or above) backend database. It is built on ASP.NET Core MVC (targeting .NET 6) with Linq2Db (Entity Framework for 4.2 or below) Code First approach. Notable differentiators are multi-store and multi-vendor capabilities.

The homepage is http://www.nopcommerce.com.

The official nopCommerce discussion forum is https://www.nopcommerce.com/en/boards.

The GitHub page is https://github.com/nopSolutions/nopCommerce

1275 questions
3
votes
1 answer

NopCommerce deployment decision

I have installed NopCommerce from the Azure Websites gallery. It is up and configured which is great, albeit not the latest version. Moving forwards, I want to customise it quite heavily, but it would be nice to increment from what I have up and…
Steve Newton
  • 1,046
  • 1
  • 11
  • 28
3
votes
2 answers

How to override route in a plugin nopcommerce

I've a route like Admin/Vendor in my MVC application . Without changing this route I need to point this same route to another method say CustomAdmin/CustomVendor. I tried attribute routing but no luck . Is there any way to do this. My current code…
Optimus
  • 2,200
  • 8
  • 37
  • 71
3
votes
1 answer

Add Submenu in admin panel in NopCommerce 3.8

I am learning Nopcommerce from the tutorial provided by Pluralsight. When it comes to adding menu for the plugin in the admin panel it is different with the version 3.5 and 3.8. There is no public SiteMapNode BuildMenuItem() instead we have to use…
Avinash
  • 193
  • 1
  • 14
3
votes
2 answers

creating html helper equavalent to nopcomerce @T() helper

I was working on NopCommerce, and it has an HTML helper @T("") that takes a string key and fetches its value from the database. I want to implement this in my project. I googled a lot but didn't find any help on how they created a helper method like…
3
votes
0 answers

how to add multiple tables in single nopcommerce plugin

I want to create a plugin in nopcommerce which has many options for weight shipping and i need 2 tables,one for shipping details and another one for neighboring province which has many-to-many relation with province table. how can i create two…
3
votes
2 answers

load balancing nopcommerce with round-robin method

I am using nopcommerce 3.6 and here is problem with load balancing. I have 3 machines to handling traffics and I using source ip hashing method. Now, I want to switch from this method to round-robin method cause it's better to handle traffics but in…
3
votes
1 answer

admin.common.js:21 Uncaught ReferenceError: $ is not defined

working on nopcommerce plugin development using Kendo grid UI. but facing this problem in view side Kendo grid not populated with data. therer is error on console ` Uncaught ReferenceError: jQuery is not defined(anonymous function) Uncaught…
Hassan Abbas
  • 467
  • 2
  • 8
  • 28
3
votes
2 answers

Should I use Thread.Sleep or Task.Delay in a nopcommerce Task?

I am coding a Task in a plugin to nopcommerce. The Task must download a catalogue from a website (https://data.icecat.biz/export/level4/). If the download fail for some reason, I want my program to wait for a minute and then try again a couple of…
Anders Finn Jørgensen
  • 1,275
  • 1
  • 17
  • 33
3
votes
1 answer

Commiting changes to mirrored repository

To begin working on new nopCommerce project I created a private git repository. I wanted to be able to pull the latest changes from the source so I duplicated the official nopCommerce repo…
lng
  • 805
  • 1
  • 11
  • 31
3
votes
0 answers

Azure URL encoding in nopcommerce

We have nopcommerce solution hosted on AZURE. Nop have 3 languages LV, EN, and RU, with URL SEO frendly enabled. All URL are encoded based on language for example: xhttp://xcom.lv/ru/Ноутбуки xhttp://xcom.lv/ru/notebooks When we switch language…
Surikus
  • 33
  • 5
3
votes
2 answers

Set ProductVariantAttribute value with nopCommerce

I have a requirement to specify some values per-item per-sale. Imagine being able to add a gift message to each item in the basket individually. How can this be achieved? I'm using nopCommerce 1.6 (for .net 3.5 compatibility). I have added three…
Greg B
  • 14,597
  • 18
  • 87
  • 141
3
votes
3 answers

Static repository... can't use DI, what to do?

I am in a situation where we need to modify what is being returned from the static repository in a 3rd party open-source application (NopCommerce). The problem is that they use static repositories, so I can't merely inherit an interface and DI my…
3
votes
3 answers

How to remove line blank with regex html to plain text?

I using regex to convert html to plain text. Can you help me to remove line blank with regex My html:
TRI ÂN
  • 59
  • 7
3
votes
0 answers

Stop loading unnecessary symbols

I'm working with nopCommerce and it works well. The only problem is that it takes a lot of time for web app to start. After I hit F5 it takes around 45 seconds before it gets to Application_Start method. (If I hit 'Start Without Debugging' it takes…
Stanislav
  • 165
  • 1
  • 15
3
votes
1 answer

Nopcommerce Error in service registration for new table

Please help me out. I am stuck with the service registration. I tried every possible aspect from google but could not conclude. What I am trying to do is create a new table EducationDegree, a master table. The Consumer will then be assigned…