View from inside the viper

Product Visualizer Feature

  June 28, 2011 15:04
by Nigel

One of the more advanced features we have added to Cart Viper the DotNetNuke ecommerce module is the product visualizer. This feature allows your customers to see a mock-up of what their product will look like once they have made their own selections. For example this feature would allow a customer to see what a t-shirt would look like once they have entered their own custom text and images.

Configuring the product visualizer is straight forward, the 1st step is to add each option for your product as a product variant, following on from our t-shirt example we are going to define 3 variants:

CropperCapture[4]

Once we have defined the variants we can then select the product visualizer link.

The 1st step is to upload a “base image”, the base image is used in the mock-up and the customers selections are then inserted into the base image to let them see what the product would look like with their selections.

Once your base image has been uploaded you must then create a new marker for each product variant you would like to appear on the mock-up. In the below example we are creating a marker for the “T-Shirt Image” variant, by using the image selection tool it is possible to define where the marker should appear on the base image – the users content will then be inserted into the marker.

CropperCapture[5]

In the above example we are expecting a user to upload an image, as the variant “T-Shirt Image” has a control type of “ImageUploader”, however if the control type expected text as the input you can also set the maximum number of characters the user can input, along with the font size, colour and alignment.

It is also worth noting that each marker that has been previously been added is outlined in red to allow you to easily arrange your markers on the base image as you wish, as you can see the “T-Shirt Message” marker has already been added.

Once the product visualizer has been configured for a product the option “View Personalized Product” is outputted on the product details page:

CropperCapture[9]

When clicked upon the user will be able to view the mock-up of their product in a modal popup window:

CropperCapture[6]

If an order is placed for a product the customer and store admin will be able to view the mock-up at anytime by logging in and viewing their order management sections.

Cart Viper is available for a free 14 day trial, if you have any questions please contact us.



Store Promotions Feature

  June 27, 2011 08:52
by Mark

Continuing on with the theme of showing new features added to Cart Viper our Ecommerce module for DotNetNuke, we are going to look at the new feature Store Promotions.

Using Store Promotions allows you to have a store or category wide sale, so for example I could discount the category Fireworks by 5% for 4th July weekend.
A Store Promotion takes a start and end allow you to define the terms of the deal for you customers.

Store promotion administration

When you define a promotion for a category, that discount will only apply to products within that category. It will not be applied to any products defined within sub categories of the category.

Once the promotion is within the activation dates defined the product(s) will then display in the store like the example below.

Product with a promotion discount applied



Improved Store Admin Menu

  June 25, 2011 17:48
by Mark

We are constantly trying to improve Cart Viper our Ecommerce Store for DotNetNuke, one of the new improvements in release 1.3.1 was an improve admin menu.

Previous we had all the Store Admin options listed as hyperlinks on the Admin page, however there is only so much room and we couldn’t group related options together.

Old style admin menu

We’ve followed the current trend of using a mega menu style menu to allow us to group the options together and also to take up much less real estate on the screen.

New admin menu with a flyout menu

All the options you need to manage your store are now easy to find

We hope you like the new feature, we’re already working on the next release of Cart Viper which will have even more improvements and features.



Cart Viper–Testimonial

  June 21, 2011 14:17
by Mark

We are always pleased to hear feedback and comments from users of Cart Viper. It is even better when we get a comment like this one from Steve Bonikowski at Quantum IT Ltd.

“Just thought we'd show you one of our sites that uses Cart Viper. http://www.northhallsaddlery.co.uk/
We're really pleased with Cart Viper it was easy to set up and performs well. The best part is the support and the rapid development of enhancements and issues.”

North Hall Saddlery - Equestrian Supplies



Additional Variant Controls

  June 15, 2011 14:10
by Mark

Since the release of 1.3.0 of Cart Viper we’ve added two additional controls you can use to collect variant data for a product.

  • Textbox Multi-line – allows customer to enter multiple lines of text for a product option.
  • Image Upload – allows the customer to upload an image, this could be for personalisation of a product with a photo for example.

Defining a product with the TextboxMultiLine variant allows the customer to enter some message for the item they are purchasing, this is great for a gift card message for example.

multi_line_edit

In the store front the customer is able to supply the details they would like added to the Gift Card in the example below. This text is listed on the order once its placed.

multi_line_variant_store_front

The image upload control allows the customer to upload an image to your store which is then available to download by the store owner once the order is placed.
This could be used to collect a photo that is to be printed on a personalised item for example like a t shirt.

image_upload_store_front



Removing Test Orders from the Store

  June 15, 2011 11:40
by Mark

During testing of Cart Viper you may want to remove orders from the store once you’ve finished testing, this isn’t a feature which is available in the store admin however you could use the script below to mark an order as cancelled and hidden from the UI.

This is purely for use during testing, you shouldn’t use this script when your store is in production.

Simply set the @orderId to the id of the order to remove. In the example below this will cancel and hide the order 1014.

declare @orderId int
 
--set this to value of the orderID to cancel and hide
set @orderId = 1014
 
 
update {databaseOwner}[{objectQualifier}CVStore_Orders] 
    set orderIsPlaced=0,
    orderStatusId=6
        where orderId=@orderId


This script should be executed using Host – SQL page within your portal.

Hiding test orders using a SQL script



Cart Viper Version 1.3.1 Released

  June 8, 2011 12:06
by Nigel

Just to let you all know we have just released version 1.3.1 of Cart Viper our DotNetNuke ecommerce module the full list of new features are:

As ever we will be doing follow up blogs highlighting each new feature.



Abandoned Shopping Cart

  June 7, 2011 15:51
by Mark

In any ecommerce store you’ll get customers that never checkout with their cart.

Recently we were asked about how to determine the number of abandoned carts in Cart Viper, this is something we’ve got on the road map for a later release (built-in report to display the number of abandoned carts).
So we’ve created this simple script that you can execute using the Host – SQL page within your DotNetNuke portal.

declare @portalId int
 
--set this value to the portalId to report
--abandoned carts
set @portalId=0
 
select cast(floor(cast(c.datecreated  as float)) as datetime) as Date,
  count(distinct c.cartId) as Count
from {databaseOwner}[{objectQualifier}cvstore_cart] c
inner join {databaseOwner}[{objectQualifier}cvstore_cartItems] ci on c.cartId=ci.cartId
where portalId=@portalId
group by cast(floor(cast(c.datecreated  as float)) as datetime)
order by cast(floor(cast(c.datecreated  as float)) as datetime)

 

Executing the script will display the abandoned cart count broken down by date. Notice that you can define the portalID to report on by setting the value of the set @portalId=0 line.

Just copy the script into the text area, update the portalId to the correct value then click Execute to display the results.

Abandoned carts statistics script



New Simpler Store Management Role

  June 6, 2011 12:45
by Mark

In previous versions of Cart Viper we had two roles that you could use to assign management options for the store admin page.

  • Manage Orders
  • Manage Store

The Manage Store role give you the ability to do all the day to day task such as creating products, updating categories etc. However it also give you all the setup options for defining a payment gateway and tax options.

Displaying the full range of options available can be overwhelming to some store owners, the store owner’s technology partner has already taken care of setting up the payment gateway and tax options for example.

Manage Store role options

To create a simpler experience we’ve created a new role called Manage Catalog this allows uses with the defined role to see a more streamlined store admin page tailored to managing products, reviews, categories, coupons and promotions.

Manage Catalog role options

If you where to assign a user to both the Manage Orders and Manage Catalog role then they would have a simple store admin page that allows them to run their store without displaying all the configuration options for payment, tax, shipping etc.

Manage Catalog and Manage Orders roles assigned to a user

Defining the roles required for each security group is set using the Store Admin page, simply select from the drop down the role required.



In Store Pick Up

  June 6, 2011 12:20
by Mark

In Store Pickup is a feature which has become very popular in recent years, allowing a customer to purchase items online then pickup then up in the store themselves. Cart Viper store owners can now optionally allow customers to pickup their online order in store. We’ve added the ability to allow “In Store Pickup” in version 1.3 of Cart Viper our shopping cart module for DotNetNuke.

This feature is optional so if you don’t want to offer In Store Pickup the ecommerce store will operate without it.

To enable In Store Pickup the store admin would simple need to select the option in the shipping admin page. Once checked this allows customers to select this option during the checkout.

enabling in store pick up in DNN shopping cart

When a customer selects In Store Pickup the delivery charge will be zero for that order. Both the store owner and the customer would get the standard order confirmation email with the delivery option set to “In Store Pickup”.

In store pickup option during the checkout process