| View previous topic :: View next topic |
| Author |
Message |
capforge
Joined: 26 Jun 2009 Posts: 2
|
Posted: Fri Jun 26, 2009 5:00 pm Post subject: One Product, Multiple Versions- Best way to Handle? |
|
|
I am just getting started with DLGuard and am wondering what the best way to handle this scenario is- I have a software product that is sold through one sales letter but comes in 8 different versions depending on the users situation.
I don't want to present someone at the bottom of the sales letter with 8 buy buttons- is there a way that I can offer them a way to pick which version to download AFTER they have paid- all versions are the same price. I don't particularly want them to be able to download more than one but I don't want them to get stuck trying to decide before they order. Any suggestions? Thanks! |
|
| Back to top |
|
 |
espradley Moderator
Joined: 29 Nov 2008 Posts: 844 Location: USA - Georgia
|
Posted: Sat Jun 27, 2009 4:26 am Post subject: ... |
|
|
Hello,
I would recommend a drop down with the options in it. Then when you click on the option, it and then go, the script (maybe written in javascript) will load the DLGuard Product URL affiliated with their selection..
Alternatively, you could do this with a radio button or something.
Should be relatively easy to put together. _________________ Eddie Spradley - DLGuard Moderator and PHP Developer
www.dlgadvance.com
Free WordPress DLGuard Membership Plugin (limited time) - http://dlgadvance.com/products/dlguard-wordpress-membership-plugin/ |
|
| Back to top |
|
 |
capforge
Joined: 26 Jun 2009 Posts: 2
|
Posted: Sat Jun 27, 2009 6:11 am Post subject: |
|
|
Thanks for the suggestion.
After playing with dlguard some more, it occurred to me I could do this (I think): They click the order link, they pay, and then dlguard takes them to a custom download page where they have a drop down menu to choose the type of product, which is linked to more dlguard URLs but the products are set up as free.
Can I limit them to being able to only click once on that selection page, though? |
|
| Back to top |
|
 |
espradley Moderator
Joined: 29 Nov 2008 Posts: 844 Location: USA - Georgia
|
Posted: Sat Jun 27, 2009 3:27 pm Post subject: .. |
|
|
No, I don't think this would work.
What will happen is if you set it up as a free product, it forces them to put in their email address again - which they won't want to do. Also, there is no way to say, once they have downloaded product x - they can't download anything else.
I would recommend the drop down box issue. That way they are purcahsing the product they want and DLGuard is managing everything for you. _________________ Eddie Spradley - DLGuard Moderator and PHP Developer
www.dlgadvance.com
Free WordPress DLGuard Membership Plugin (limited time) - http://dlgadvance.com/products/dlguard-wordpress-membership-plugin/ |
|
| Back to top |
|
 |
admin Site Admin
Joined: 31 Jul 2005 Posts: 9135 Location: Australia
|
Posted: Sat Jun 27, 2009 11:28 pm Post subject: |
|
|
Hi Capforge,
I'd recommend going for the drop down box pre-sale as well, but if you really do prefer it to be on the thankyou page, then you could display certain download links using a drop down box through Javascript, if you know some Javascript or have a programmer to create this for you.
When you bought DLGuard you probably noticed the two versions I offer on the download page - the Windows version, and the Mac/Linux version.
I'm not sure if you could create a similar design for your page, being 8 products?
I hope this helps!
cheers
Sam _________________ Sam Stephens
DLGuard: www.dlguard.com
GuardHQ: www.guardhq.com
-------
Keep up to date with DLGuard and other GuardHQ products: www.guardhq.com/newsletter.php
www.twitter.com/DLGuard |
|
| Back to top |
|
 |
espradley Moderator
Joined: 29 Nov 2008 Posts: 844 Location: USA - Georgia
|
Posted: Sun Jun 28, 2009 12:06 am Post subject: .. |
|
|
Here is the code:
Just change Product 1 to product name and www.product1.html to the URL of your raw sales link...
| Code: | <form name="go">
<select name="menu" onChange="location=document.go.menu.options[document.go.menu.selectedIndex].value;" value="GO">
<option value="#">Select One</option>
<option value="http://www.product1.html">Product 1</option>
<option value="http://www.product2.html">Product 2</option>
<option value="http://www.product3.html">Product 3</option>
<option value="http://www.product4.html">Product 4</option>
<option value="http://www.product5.html">Product 5</option>
<option value="http://www.product6.html">Product 6</option>
<option value="http://www.product7.html">Product 7</option>
</select>
</form> |
_________________ Eddie Spradley - DLGuard Moderator and PHP Developer
www.dlgadvance.com
Free WordPress DLGuard Membership Plugin (limited time) - http://dlgadvance.com/products/dlguard-wordpress-membership-plugin/ |
|
| Back to top |
|
 |
stevereel
Joined: 01 Jun 2009 Posts: 21 Location: Central Florida USA
|
Posted: Sun Jun 28, 2009 2:39 am Post subject: |
|
|
Espradley, thanks for the code... I can use this as well, and I'm sure thats true for many others.
Where exactly does this form go? |
|
| Back to top |
|
 |
espradley Moderator
Joined: 29 Nov 2008 Posts: 844 Location: USA - Georgia
|
Posted: Sun Jun 28, 2009 3:23 am Post subject: Hello |
|
|
Hey,
Put it any where you want.
Its purpose is to allow your memebers to select a product from the drop down box and it will take them to the sales page for your product...
So you would want the link to point to something like www.yourdomain.com/dlg/sell.php?p=whatever
So, it essentially goes on your sales page...and your users can select it from the list...
Sam, I am moving this post to the membership tricks post! _________________ Eddie Spradley - DLGuard Moderator and PHP Developer
www.dlgadvance.com
Free WordPress DLGuard Membership Plugin (limited time) - http://dlgadvance.com/products/dlguard-wordpress-membership-plugin/ |
|
| Back to top |
|
 |
|