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
3 answers

Facebook External doesn't get email value in Nopcommerce 3.60

Currently I use NopCommerce 3.60 and use FB External Login. Problem: After I login in Nop by FB External Button and it returns to URL mydomain.com/login#_=__ with red message (Email is required) and it does not login user in. Screenshot:…
WilliamSOW
  • 31
  • 6
3
votes
2 answers

NopCommerce 3.6 Tax By Country & State & Zip always results in zero tax

The NopCommerce 3.6 Tax By Country & State & Zip plugin always returns zero tax for one of my stores. I have the same results locally and remotely, but the database was not copied from local machine. I performed the steps locally and then again…
Seventh Son
  • 131
  • 6
3
votes
1 answer

NopCommerce Nop.Core conflicting DLL issue

So I started working on an existing project at work in NopCommerence and I accidently added the Newtonsoft.Json DLL to the Nop.Core project, ever since then, the project keeps randomly crashing giving me the error: Could not load file or assembly…
Jessica
  • 115
  • 1
  • 8
3
votes
2 answers

Nop Commerce Product Import gets slower and uses more memory over time using Entity Framework

I need to import about 150,000 products with categories, manufacturers, images, and attributes into Nop Commerce. I wrote a plugin based on Nop.Services.ExportImport.ImportManager. The more products that are imported, the slower the import process…
David
  • 1,560
  • 2
  • 16
  • 32
3
votes
2 answers

Change nopcommerce default action

How to change nopcommerce default action? I create new action in HomeController, and want to be default page. I change: routes.MapRoute( "", "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action =…
Hamed Rashno
  • 314
  • 1
  • 2
  • 9
3
votes
1 answer

Nop commerce single sign on from another website

I am developing a nop commerce store (3.50) . I have a requirement that user will be redirected to nop commerce site when he clicks on the link provided on my informative website. I want to pass the loegged in user information from that site to nop…
Sachin Trivedi
  • 2,033
  • 4
  • 28
  • 57
3
votes
1 answer

Including Bootstrap into Nopcommerce 3.5

I want to use Bootstrap to create a NC theme. I installed Bootstrap via Nugets Package Manager in Visual Studio 2013. Then i added : Html.AppendScriptParts("~/Scripts/bootstrap.js"); Html.AppendScriptParts("~/Scripts/bootstrap.min.js"); in…
Kdjave
  • 45
  • 3
3
votes
0 answers

Using Glimpse in nopCommerce project

Currently, I am using nopCommerce project version 3.4 and after seeing how powerful tool Glipmse is for real time giagnostics, I have decided to incorporate it in my nopCommerce project. But I have a dilemma regarding the fact that since the glimpse…
Simon Azzopardi
  • 121
  • 1
  • 3
  • 8
3
votes
1 answer

MVC Route return Error : Child actions are not allowed to perform redirect actions

I am using nopCommmerce 3.40 , MVC 5 I have make plugin and make route one route for action But i am getting error look like : Error executing child request for handler'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerAsyncWrapper'. Child…
Jatin Gadhiya
  • 1,955
  • 5
  • 23
  • 42
3
votes
1 answer

nopcommerce 3.40 themes changing

I am getting ready to start customizing nopCommerce the way I want it to look. My initial thought was that i would just hack away at the master Layout and push my own Css on top of it all. then I thought. Wait. Their are themes, even better, their…
Strawberry Farmer
  • 882
  • 1
  • 8
  • 18
3
votes
1 answer

nopcommerce 3.40 deployment 403 error

If i compile and deploy the nopCommerce 3.40, it works fine on my website and takes me directly to the install. If i install nopCommerce on my localhost and attach it to a local DB, then compile and deploy I get a 403. I want to make changes to the…
Strawberry Farmer
  • 882
  • 1
  • 8
  • 18
3
votes
1 answer

How to create backgroung task from MVC controller using Autofac?

Im writing a plugin for nopCommenre and encountered the following problem: one of the controller's action method should run a height-load operation in background thread. nopCommerce uses Autofac as IoC container. If I understand correctly, I need to…
landless
  • 133
  • 2
  • 8
3
votes
1 answer

How to use caching in Nop330

i want to use caching in customer controller (Login action)(Nop.Web). so please help me. i am using this way but not usefull create one class in nop.core(domain folder) CustomStoreCache.cs public partial class CustomStoreCache { public…
user3611792
3
votes
0 answers

Renewing instances in Autofac

I know that the entire context of this issue is a bit specific, but I'll try to do my best explaining it. I'm performing a quite big importation from one ecommerce platform to nopCommerce. nopCommerce works with Autofac as dependency injection…
Jacob
  • 1,886
  • 2
  • 25
  • 40
3
votes
1 answer

how to override core controller method

I want to use core controller method which is "product" action method and non action prepareProductDetailMethod in my plugin but I want to only override this method in my plugin not implement again in my plugin So.How to call core controller…
Ajisha
  • 413
  • 6
  • 22