You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
I mostly have digital download products and that seems to work fine.
Question: Does anyone know if it's possible (for digital products) to allow the customer to request that we ship them a CD of their product (so they'll have to be allowed to enter their deliver info), IN ADDITION TO the immediate download?
Thanks much,
Mike
Offline
You should be able to associate a product option to the donwload which is shipped (this will send them the digital download and request shipping info for the delivered option).
Offline
Can anyone confirm that this worked?
I have a product that I want a digital download to be made available and a product shipped *everytime* this would mean even if I am doing this by having a product option - that the user would never see the product option - it would just be selected. Any ideas?
cheers,
RM
Offline
I created a new Product (not Product Option) called "Free CD Shipping" with no Related Categories and no Related Products. This prevents the product from showing up in any of the normal product lists.
Then, at the very bottom of the "Shopping Cart/Wish List Display" xhtml include file (Home > ClickCartPro > Displays: Skins, Menus, XHTML Includes and Messages > Manage XHTML Includes > Shopping Cart/Wish List Display) I added the attached code.
Note that 9WSPI-17000A is my product ID for the new free shipping product. You'll have to change that your own ID.
This allows the customer to do the actual adding of the shipping to their cart in 1 spot, cleanly, and as an option.
The downside of this method is that you can't easily specify too many shipping options, and any other products in the cart do not directly show up as "shipped products" in your admin area.
So I wouldn't recommend it except in cases where you have a pretty simple shipping situation where you can monitor who wants what shipped semi manually.
Regards,
Mike
...
<br /><br />
<div class="khxc_storehead"> </div>
<br />
<div class="khxc_formfieldpnfs_2"><strong>Optional - Free CD Shipping for Download Products</strong></div>
<p>
Your "Instant Download" purchase will be immediately available for download whether you select this option or not. However, we would be happy to send you a copy of your purchase on CD free of charge.
</p>
<p>
<div style="padding-bottom:5px;"><strong>Free CD Shipping</strong></div>
<form action="/index.php" method="post" id="ccp0--prodaddtocart">
<input type="hidden" name="ccp0--prodaddtocart--ref" id="ccp0--prodaddtocart--ref" value="9WSPI-17000A" />
<input type="hidden" name="ccp0--prodaddtocart--addtype" id="ccp0--prodaddtocart--addtype" value="SINGLE" />
<input type="hidden" name="sid" id="sid" value="<?php print $sid; ?>" />
<input type="hidden" name="app" id="app" value="ccp0" />
<input type="hidden" name="ns" id="ns" value="addcart" />
<input type="hidden" name="ccp0--prodaddtocart--quantity" id="ccp0--prodaddtocart--quantity" value="1" />
<input class="khxc_formbutton" type="submit" name="SUBMIT" id="ccp0--prodaddtocart--SUBMIT" value="Add To Cart" onclick="return DisableSubmit('ccp0--prodaddtocart');" onkeypress="return DisableSubmit('ccp0--prodaddtocart');" />
</form>
</p>
Offline