How to create multiple shopping cart/basket in NOPCommerce - nopcommerce

Currently, we are developing new ecommerce web site using nopcommerce. The one of requirement is that customer should be able to create multiple shopping basket. In current nopcommerce system can only handle single shopping basket. customer can't create or save multiple shopping basket.
I haven't found much information online as well.
Has anyone created this kind of functionally? are there any plug-in already exist?
please share some idea how to archive functionally.
Thanks in advance

Your requirement might be having different shopping cart for separate store. You can check for
int storeId= //Get this from url or urlreferrer
var cart = _workContext.CurrentCustomer.ShoppingCartItems.Where(sc =>
sc.ProductVariant.Product.StoreId.Equals(storeId)).ToList();

Related

How do I create a catalogue-based website in ix or Wordpress?

I'm not sure if this is the right place to ask. I'm also currently in my last semester of studies for web development.
Id like to create a website similar to an ecommerce site, except instead of checking out and going to pay and place an order, an email gets sent through to me with the product information and also any other added messages the user has. I still need to be able to add products to a cart section so that I don't have to send multiple emails for multiple products.
I wanna do this in Wordpress or Wix because I have to create the entire site in a month, or just get it functional in that time.
Any help would be appreciated!

Existing Wordpress extension/plugin to let users sell their courses (like Udemy)?

Is there a WordPress extension/plugin that allows users to sell their courses on a website. Just like Udemy but more simple...
It would be a type of plateform that specific users (pro) could use to create and purpose their own courses to basic users.
I found a lot of LMS Extensions but it's only to sell our proper courses and make subscriptions on them.
It's just to know if something is existing or if I need to develop specifically.
Thanks for your anwser.
LearnDash is one of the best. You don't need to have it as a subscription based product. You can use WooCommerce and set up a course product to sell. Doesn't have to be on amembership basis. Here is an article for more information:
https://wisdmlabs.com/blog/create-course-marketplace-learndash/

build REST API for WooCommerce for mobile apps

we are building the REST API for WooCommerce and we want to add a product to user's cart. For that we have used Cart API for WooCommerce but it doesn't seems to working for us as it doesn't giving any option to set user_id along with the data so we are facing issues with mobile app and website syncing. We want to make it generalize like if user is using mobile and adds product to cart, it should be remain in the cart if login from web too and it's seems not working for us
Any help will be appreciated for it
Thanks in advance
Woo-commerce cart items is temporary store in session so you can not get items using REST API, for that you have to make a custom table of cart then store details in your custom cart table using REST API.

Wordpress rsvp/contact form pre-populated

I am very new to wordpress and would like to create a rsvp form with a difference.
For the launch of a company we are having multiple events and i would like to track the rsvp for each event.
Here is the scenario:
I send out paper invites for my wedding and the events and ask them to rsvp on the website and give them the web address, and a unique code.
They go to the website and proceed to "login" which they do with their surname and unique code. Once they are logged in, they can rsvp however they can only see the events they are invited too and can only choose up to the number of people i have allocated them on the invitation.
This will all get stored in the database i have with the contacts name and unique reference.
So where to begin? I am currently looking at contact form 7 but cannot get the form to be dynamic to login.
Any direction would be hugely appreciated!
Thanks!
I would look at http://www.gravityforms.com/
It's not free but it is a MUCH more dynamic and robust form plugin.
Might be worth looking in the WP Plugin Repository for plugins tagged with events, events management or RSVP, rather than trying to build a solution from CF7?

ASP.NET : Tracking Unique page visits/views

I have an ASP.NET application where View.aspx page will display the details of each products in a shopping cart.The page displays dynamic data(Ex: For each product id,the content will be different).Now i want to track the unique page views of each product.What are the best solutions to approach this problem ? I am already using google analytics.But i wanna custom solution/code for my web app,so that i can know how many hits came for each product
I have create a Statistical database, and I create a table, that have the product id, and the total views, for each product.
So every time a product is view by a user, I find in the table, this product line-id, and I am updating this values.
I think that is sound and it is simple.
How ever this is the base idea, you can improve it by your ideas.
http://www.google.com/analytics/ Set up each product with its on URL, or write it in the tracker dynamically. Also this has nothing to do with programming.

Resources