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
0
votes
2 answers

How to update an existing entity in nopCommerce 2.5 (MVC)?

How to update an existing entity in nopCommerce 2.5 (MVC)? I did makes changes to class under Nop.Data > Mapping folder. But it does not created the column to database after I run the application. Is there anything else I need to do?
Naveen
  • 315
  • 2
  • 4
  • 15
0
votes
1 answer

Google checkout button doesn't work in nopcommerce

I setted up google checkout payment method in nopcommerce and it appears on cart, but it doesn't work. I looked at html and find that form with id=form-googlecheckout doesn't appear on my page. Why it could heppened? Also I am not sure in flow of…
Yaroslav Bigus
  • 678
  • 7
  • 24
0
votes
2 answers

How to use my own PK on products/ categories

Am working on syncing my internal products database with nopCommerce, therefore most products already exist in internal db, and I would like to upload them to a SQL Server nop-database. I want to re-use all PK's that are in internal DB since it…
Andrew
  • 7,619
  • 13
  • 63
  • 117
-1
votes
0 answers

How to create a addon for Smart Store?

I'm new to Smart Store and I'm interested in creating an addon for it. I've been reading the documentation, but I'm still not sure where to start. Can anyone provide some guidance on how to create a plugin for Smart Store? Specifically, I'm looking…
-1
votes
3 answers

Is there any certain Tutorial for how to add plugin in nopCommerce through coding?

I created and downloaded nopCommerce for develop multi platform web site. I created theme but I can't change settings of pages from coding. Not getting how to do changes and crate plugin. Please share any tutorial that describe every steps in…
-1
votes
1 answer

Getting a error when deleting a pdf file in Roxy Fileman

Is there a way to delete a file in Roxy Fileman, I keep on getting a error when I try to delete a pdf in Roxy Fileman, the delete folder is working fine just the file not want to delete. I have been struggling to find a solution for two weeks, still…
-1
votes
2 answers

The view 'Route' was not found, but it actually exist in nopcommerce 4.5.2

Appears: An unhandled exception occurred while processing the request. InvalidOperationException: The view '/OGS/Route.cshtml' was not found. The following locations were searched: /OGS/Route.cshtml Although the file is present on the first…
s.k.Soni
  • 1,139
  • 1
  • 19
  • 37
-1
votes
1 answer

How to call custom link by clicking button from datatable ColumnProperty in nopcommerce 4.3

I want to call link from datatable ColumnProperty, by clicking on button or any url in nopcommerce 4.3. Here is my Datatable code, @await Html.PartialAsync("Table", new DataTablesModel { Name = "customerjama-grid", Length =…
s.k.Soni
  • 1,139
  • 1
  • 19
  • 37
-1
votes
1 answer

The name 'T' does not exist in the current context while overriding view in a nopCommerce plugin

First, for context, I'm working on a Plugin for nopCommerce. I am overriding a view (namely \Presentation\Nop.Web\Administration\Views\Currency\List.cshtml) in my plugin by creating a custom view engine. Now though that's successful, I'm having…
Onion
  • 21
  • 1
  • 6
-1
votes
1 answer

Why is transfer from test to production of Asp.Net-Core app completely not working

We've been finalizing NopCommerce .Net Core web app which has been running great on a test server. I'm now trying to transfer the app to our production server, which did not have .Net Core. I installed the latest .Net Core hosting bundle and…
erict
  • 1,394
  • 2
  • 14
  • 28
-1
votes
1 answer

CodeFirstInstallationService usage?

I am new to Nopcommerce and I tried to find a way to update my database after modify some changes. I found this file name CodeFirstInstallationService.cs which is in the Service directory. My question is: What is the use of this file? Is it only…
-1
votes
1 answer

How to change display name of admin side menu of nopcommerce

Screenshot of the issue: I want to change the display name. What I did so far: Added this line to sidemap.config
Ritwick Dey
  • 18,464
  • 3
  • 24
  • 37
-1
votes
1 answer

ASP.NET Core 2.0 (NopCommerce 4.0) SQL Commands + Views

So I'm working with NopCommerce this last month but I'm trying to make a tour website and it's kinda hard so I have a code that connects to the DB and makes a SELECT : public string cs_preorder_proc(int opcode, string p1, string p2) { string…
-1
votes
1 answer

How to Create New Custom Product Details Page In NopCommerce

How to create new custom product details page in NopCommerce new generic url RouteProvice and new HTML page
-1
votes
2 answers

Value getting Null from Iformcollection in nop4.0 when submit the form

I want data from Iformcollection in nopCommerce 4.0 it getting null value. This is my post method in controller [HttpPost] public ActionResult UpdateCart(int Id, IFormCollection form) { var setting =…