Electronic downloads
#1
Posted 06 December 2011, 17:40
We want to set up to also sell the same books as ebooks for tablets etc.
But not sure if the software can do this. I attempted to do a ebook purchase but it keeps adding in shipping costs. Since this is a download there should be no shipping charges.
Can any one give me some evidence, thank you kindly.
#2
Posted 08 December 2011, 10:03
Quote
8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself.
Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues.
Any issues with oscommerce, I am here to help you.
#3
Posted 18 January 2012, 16:53
web-project, on 08 December 2011, 10:03, said:
Which options might those be?
I'm having the same problem, perhaps made more complex by having a shipping fee based upon the price of the order. But if it were as simple as choosing an option to have no shipping fees for downloadable items, I suspect we'd have already found that option.
#4
Posted 18 January 2012, 20:23
Chris
:|: Click Here to learn how I can help you with custom coding, add ons, security and templates :|:
:|: Need an Area Calculator, Pre-Paid Account, Virtual Pin, Auction or Layaway Add on ? Click Here :|:
#5
Posted 19 January 2012, 01:20
But if you have installed SDS it will be clearer.
HTH
G
Virus Threat Scanner
My Contributions
Basic install answers.
Click here for Contributions / Add Ons.
UK your site.
Site Move.
Basic design info.
For links mentioned in old answers that are no longer here follow this link Useful Threads.
If this post was useful, click the Like This button over there ======>>>>>.
#6
Posted 19 January 2012, 20:07
In what way does SDS make shipping behave differently?
#7
Posted 19 January 2012, 20:12
I am not a coder. OSC has a steep learning curve, but in general the program does work. If it doesnt work, the chances are it is something you have done.
#8
Posted 19 January 2012, 20:59
14steve14, on 19 January 2012, 20:12, said:
None of the products have weights. As I said earlier, my shipping is based upon the price of the order (excluding downloads), using "MultiGeoZone MultiTable Shipping".
The downloadable products are not free, so "Free Product Checkout" is not relevant.
So far the workaround has been to set the price to $0 and put the actual price on the download "option" -- resulting in the product showing a price of $0.00 in the catalog.
Fortunately, Alex and DunWeb think that there are settings someplace to enable free shipping, if they can just point out where they are instead of saying that they exist.
Edited by ScotWilcoxon, 19 January 2012, 20:59.
#9
Posted 19 January 2012, 22:09
Have a play with the settings.
HTH
G
Virus Threat Scanner
My Contributions
Basic install answers.
Click here for Contributions / Add Ons.
UK your site.
Site Move.
Basic design info.
For links mentioned in old answers that are no longer here follow this link Useful Threads.
If this post was useful, click the Like This button over there ======>>>>>.
#10
Posted 19 January 2012, 22:23
geoffreywalton, on 19 January 2012, 22:09, said:
I have different shipping rates to different countries. I see that Table Rate Shipping has a Zone configuration option in the Table, but can there be more than one Table?
I don't see any download-oriented settings there, but maybe the Table Rate Shipping module handles downloadables differently.
Edited by ScotWilcoxon, 19 January 2012, 22:24.
#11
Posted 19 January 2012, 22:26
Seeing as this is for free delivery of zero wt products surely this would be available free world wide.
Cheers
G
Virus Threat Scanner
My Contributions
Basic install answers.
Click here for Contributions / Add Ons.
UK your site.
Site Move.
Basic design info.
For links mentioned in old answers that are no longer here follow this link Useful Threads.
If this post was useful, click the Like This button over there ======>>>>>.
#12
Posted 20 January 2012, 15:32
geoffreywalton, on 19 January 2012, 22:26, said:
There are non-free products for sale, with shipping rates based on the total of the non-downloadable totals, and different shipping rates for different parts of the world. "MultiGeoZone MultiTable Shipping" can handle it, except for its not ignoring downloadable products. If I switch to "Table Rate Shipping" then several tables would be needed, but I see no mention of it supporting multiple tables nor any mention that it handles downloadable products differently from other products.
But maybe there's something in the OsCommerce core for handling downloadables, if those other people will tell us what those settings are.
#13
Posted 20 January 2012, 16:56
It has the following in the moodule
// Only show if weight is 0
// if ( (!strstr($PHP_SELF,'modules.php')) || $cart->show_weight()==0) {
$this->enabled = MODULE_SHIPPING_FREESHIPPER_STATUS;
if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_FREESHIPPER_ZONE > 0) ) {
$check_flag = false;
$check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_SHIPPING_FREESHIPPER_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id");
while ($check = tep_db_fetch_array($check_query)) {
if ($check['zone_id'] < 1) {
$check_flag = true;
break;
} elseif ($check['zone_id'] == $order->delivery['zone_id']) {
$check_flag = true;
break;
}
}
if ($check_flag == false) {
$this->enabled = false;
}
}
// }
// EOF: WebMakers.com Added: Free Payments and Shipping
I am not a coder. OSC has a steep learning curve, but in general the program does work. If it doesnt work, the chances are it is something you have done.
#14
Posted 20 January 2012, 18:17
Cheers
G
Virus Threat Scanner
My Contributions
Basic install answers.
Click here for Contributions / Add Ons.
UK your site.
Site Move.
Basic design info.
For links mentioned in old answers that are no longer here follow this link Useful Threads.
If this post was useful, click the Like This button over there ======>>>>>.














