We understand that your ecommerce site is crucial to the success of your business, from time to time issues and questions can arise and you need to have the assurance there will be someone on hand to help resolve these in a timely fashion so you can spend your time driving your own business forward.

So if you are looking for faster responses to your questions or would like the assurance there is someone on hand for you to contact, fear not we have a number of paid support options that are available to you that can give your organisation the peace of mind knowing a member from the Cart Viper team will always be available to assist!

Purchase a Support Plan

Community Support

HomeHomeIssues and Supp...Issues and Supp...Installation & ...Installation & ...You have already received your free product, please remove it from the cartYou have already received your free product, please remove it from the cart
Previous
 
Next
New Post
8/16/2017 3:33 PM
 
At http://krwa.net if I register for a training session using an email that has already registered before, I get this message before I can check out:
"You have already received your free product, please remove it from the cart."
But we want people to register multiple times, plus there are several that we offer free. How can I change settings to allow this? Also, how do I distinguish between a FREE product and one that has a cost of $0?
 
New Post
8/17/2017 10:32 AM
 
Hi,

When you select the "is free product" setting on a product we have logic that runs when you attempt to checkout that ensures that the user has not already "purchased" this product. Todo that we check that the billing email address they entered against our order history (if you put a unique email address in you should find you can purchase the product).

To turn off this logic you can alter our stored procedure that checks if the user has already purchased the product, if you want todo that copy the below stored product and paste it into host -> sql ensuring "run as script" is selected and click "execute". If you do run this you need to be aware there will be no limits on the number of times a customer could "purchase" your free product:

alter procedure {databaseOwner}{objectQualifier}CVStore_OrdersHasUserPurchasedProduct
(
@portalId int,
@productId int,
@emailAddress nvarchar (50)
)
as

set nocount on

select COUNT(o.OrderID) as total from {databaseOwner}[{objectQualifier}CVStore_Orders] as o
inner join {databaseOwner}[{objectQualifier}CVStore_Addresses] as a
on a.AddressID = o.BillingAddressID
inner join {databaseOwner}[{objectQualifier}CVStore_OrderDetails] as d
on d.OrderID = o.OrderID
where a.Email = 'will never exist' and o.OrderIsPlaced =1 and o.OrderStatusID<> 6 
and o.portalId= @portalId and d.productId = @productId

GO
 
New Post
8/17/2017 10:38 AM
 
Awesome! THANK YOU!
(Of course I would NEVER have figured that one out!)
 
Previous
 
Next
HomeHomeIssues and Supp...Issues and Supp...Installation & ...Installation & ...You have already received your free product, please remove it from the cartYou have already received your free product, please remove it from the cart


 

We use cookies on our website to improve our service to you, by continuing you agree to our use of cookies. However you are able to update your settings at any time.

Cookie Policy

A cookie, also known as an HTTP cookie, web cookie, or browser cookie, is a piece of data stored by a website within a browser, and then subsequently sent back to the same website by the browser. Cookies were designed to be a reliable mechanism for websites to remember things that a browser had done there in the past, which can include having clicked particular buttons, logging in, or having read pages on that site months or years ago.

Strictly Necessary Cookies

These cookies cannot be disabled

These cookies are necessary for the website to function and cannot be switched off. They are normally set in response to your interactions on the website e.g. logging in etc.

Cookies:
  • .ASPXANONYMOUS
  • .DOTNETNUKE
  • __RequestVerificationToken
  • authentication
  • CV_Portal
  • CV_Store_Portal_Cart_0
  • CV_USER
  • dnn_IsMobile
  • language
  • LastPageId
  • NADevGDPRCookieConsent_portal_0
  • userBrowsingCookie

Performance Cookies

These cookies allow us to monitor traffic to our website so we can improve the performance and content of our site. They help us to know which pages are the most and least popular and see how visitors move around the site. All information these cookies collect is aggregated and therefore anonymous. If you do not allow these cookies we will not know when you have visited or how you navigated around our website.

Cookies:
  • _ga
  • _gat
  • _gid

Functional Cookies

These cookies enable the website to provide enhanced functionality and content. They may be set by the website or by third party providers whose services we have added to our pages. If you do not allow these cookies then some or all of these services may not function properly.

Cookies:

Currently we are not utilizing these types of cookies on our site.

Targeting Cookies

These cookies may be set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant adverts on other sites. They do not store directly personal information, but are based on uniquely identifying your browser and internet device. If you do not allow these cookies, you will experience less targeted advertising.

Cookies:

Currently we are not utilizing these types of cookies on our site.

Feedback