In the third tutorial of the eCart coupon series, you will learn how to offer discounts on your products by placing links on web pages, emails, and newsletters. The link will lead customers directly to your website, for example, a product detail page. Once the product is added to your shopping cart, the discount will be automatically applied.
You'll find a linked index including an overview of each tutorial belonging to the eCart coupon series at the bottom of this page.
eCart allows you to offer discounts on your products via links, which you can place on webpages, in emails or in advertisements. In this 3-step tutorial, we demonstrate how someone can receive a 20% discount by clicking a link in an email. In addition, coupon links can be placed on your catalog pages, home page, web pages other than your own, and marketing newsletters. Another idea is to print the link in offline promotional material, for example, business cards and brochures.
In many cases, the preferable coupon from a marketing standpoint is a link. When customers click the link, they are led directly to your website where they can select a discounted product and add it to the shopping cart. When the cart page opens, the discount is automatically applied to the product. This eliminates the distraction of hunting online for codes and helps retain customers on your site, potentially increasing sales.
Now for an overview of the 4-step process to creating coupon links:
In this tutorial, we have chosen a product from our product catalog that we wish to sell at a discount.
There are four parts to a creating a static coupon link. As an example, we will create the link based on the local testing site in this tutorial.
http://localhost/ecommerce_test/
products_detail.php
?ProductID=2
&CID=TrackandTrail
http://localhost/ecommerce_test/products_detail.php?ProductID=2&CID=TrackandTrail
Now we will hand code a session variable called PromoCode to the product detail page. You can also add the session variable to any page that you created a link for in the Create link section. However, do not link to any any page that contains a redirect.
<?php
$eCart1->GetContent();
?>
<?php
@session_start();
if((((isset($_GET["CID"]))?$_GET["CID"]:"") != "")) {
$_SESSION["PromoCode"] = "".((isset($_GET["CID"]))?$_GET["CID"]:"") ."";
}
?>
In the last step, you'll create a discount rule in the eCart object to apply the coupon link to a specific product. in this tutorial, the discount rule will be applied to a rugged track and trail athletic shoe.
Proceed to Database-driven eCart coupon I, the next tutorial in the eCart coupon series, to learn about dynamic coupons that apply a discount based on a specific dollar amount to the total products or individual items purchased on your website. (Coming soon.)
eCart coupon series: An overview of five in-depth tutorials that demonstrate how to create coupons to discount products offered for sale on your website.
Static eCart coupon code I: In the first tutorial of the coupon series, you will learn how to create a coupon on your website that allows customers to apply a discount to the total purchase by entering a code into a text field on the shopping cart.
Static eCart coupon code II: In the second tutorial of the coupon series, you will learn how to create a static coupon on your website that allows customers to apply a discount to specific items by entering a code into a text field on your shopping cart.
Static eCart coupon link: In the third tutorial of the eCart coupon series, you will learn how to offer discounts on your products by placing links on web pages, emails, and newsletters. The link will lead customers directly to your website, for example, a product detail page. Once the product is added to your shopping cart, the discount will be automatically applied.
Database-driven eCart coupon I: In the fourth tutorial of the eCart coupon series, you will learn how to create database-driven (dynamic) coupons that allow customers to apply a discount based on a specific dollar amount to a particular item or the total products they purchase on your website. (Coming soon.)
Database-driven eCart coupon II: In the fifth tutorial of the eCart coupon series, you will learn how to create database-driven (dynamic) coupons that allow customers to apply a discount based on a percentage to a particular item or the total products they purchase on your website. (Coming soon.)
Comments will be sent to the author of this tutorial and may not be answered immediately. For general help from WebAssist, please visit technical support.
Sign in to add commentsYour friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.
: 6 Years, 1 Day, 22 Hours, 45 Minutes ago
Hi, when will the Database-driven eCart coupon I tutorial be available as this interests me a lot?
Many thanks
Michael