Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

resoman

Archived
  • Posts

    68
  • Joined

  • Last visited

Profile Information

resoman's Achievements

  1. This contribution is a godsend! I have had it operational for quite a while now, but recently it has stopped working.. I have 4 zones, they have all been tested and working until now. My 4th zone which is Shp: US-East has the same structure as another zone, it just helps organize where the package is going and if rates change in the future. Customers do not pay for shipping over $150, so here is how it is strucutured: Geo Zone 4 Shp: US-East Geo Zone 4 Table Method price Geo Zone 4 Handling Fee 0 Geo Zone 4 Shipping Table 1 .5:10,150:0 Geo Zone 4 Shipping Table 2 .5:20,150:0 Geo Zone 4 Shipping Table 3 .5:35,150:0 This is not working now, if a customer buys something for $149.00 or less, they are not charged shipping at all. So i figured I would check the free shipping in the order total module, here is the configuration there: Special Category Discount Discount Coupons 9 Discount Coupon 0 Discount Per Quantity Gift Cards 740 Low Order Fee Shipping 4 Sub-Total 2 Tax 3 Total 5 Shipping Order Shipping Cost Display Shipping true Sort Order 4 Allow Free Shipping true Free Shipping For Orders Over $150.00 Provide Free Shipping For Orders Made both I am now at a complete loss and have no idea how to stop orders from coming through with no shipping! Any ideas?
  2. Did you by chance miss the step of importing the SQL file included in the package? You have insert those tables into mysql, try using phpmyadmin if it is installed on your server. use the import function and browse to that sql file.
  3. I would like to manually enter gift voucher codes rather than have them generated when sending an email. The reason for this is because I have actual gift cards that have numbers on the back to use to redeem. They are randomly generated as well and cannot change them (they are already paid for...) Now, in order to properly use these with customers, I need to be able to enter these codes as the redeem codes. Is that possible? So far I have found that with CCGV(trad) the coupon code is automatically generated at line 42 in admin/gv_mail.php: $id1 = create_coupon_code($mail['customers_email_address']); I found it calls to admin/includes/add_ccgvdc_application_top.php: function create_coupon_code($salt="secret", $length=SECURITY_CODE_LENGTH) { $ccid = md5(uniqid("","salt")); $ccid .= md5(uniqid("","salt")); $ccid .= md5(uniqid("","salt")); $ccid .= md5(uniqid("","salt")); srand((double)microtime()*1000000); // seed the random number generator $random_start = @rand(0, (128-$length)); $good_result = 0; while ($good_result == 0) { $id1=substr($ccid, $random_start,$length); $query = tep_db_query("select coupon_code from " . TABLE_COUPONS . " where coupon_code = '" . $id1 . "'"); if (tep_db_num_rows($query) == 0) $good_result = 1; } return $id1; } Is there a way to just use a text box and input the coupon code I want to use? I am by far no programmer, but this system is so simple to use thanks to all of the contributions and great support! Thanks!
  4. Basically, with CCGV(trad) the coupon code is automatically generated at line 42 in admin/gv_mail.php: $id1 = create_coupon_code($mail['customers_email_address']); I found it calls to admin/includes/add_ccgvdc_application_top.php: Is there a way to just use a text box and input the coupon code I want to use? I am by far no programmer, but this system is so simple to use thanks to all of the contributions and great support! Thanks!
  5. Manually enter a code rather than have the script generate the number for the voucher? My client has actual gift cards with numbers on the back he wants to use for the gift vouchers, this wont work with the current configuration of CCGV trad. The system is great and does everything else though! Thanks VGER!
  6. All I can say is this contrib will not work with 2.2 ms2 USE CCVG TRAD IF YOU USE 2.2 MS2!!!! It works perfectly!
  7. So after installing CCGV 5.19 I have the same problems. I followed instructions step by step, went over them again and again, and still on checkout_payment.php the redeem button brings me to checkout_confirmation.php and the continue button doesnt work on checkout_payment.php Now, after pressing redeem and being redirected to checkout_confirmation.php, the page gives me the error: Parse error: syntax error, unexpected $end in /home/theking/public_html/checkout_confirmation.php on line 391 So...well I am at a loss here as well. This whole thread has a mess of fixes and non-fixes for this. Has anyone come up with a fix for this specific problem that keeps coming up?
  8. Thanks for the response, I dont believe its illegal to pay for tax with a paid for gift card (which is what I am trying to do). But thanks for letting me know, I will consult my client on that. I had this contrib installed for coupons but tried to extend it to gift cards (yeah, im lazy....) Hopefully CCGV traditional will work in tandem with discount coupons, wish meh luck!
  9. How do you get it to calculate after tax & shipping have been totaled? So it does act similar to a gift cert...
  10. Hello everyone, After browsing I didnt see a similar issue so I will post. I currently have a website bavender.com with osc ms 2.2 with numerous contribs installed including Discount Coupon Codes. It works fantastic, however it does not apply to the order total, just the subtotal. I want to have a customer to be able to use the coupon code to be able to purchase an item entirely free. How is it I can apply the coupon to the complete order? Also, I saw someone ask previously in the forum, has anyone developed a system to use 2 codes at once? Say they have a 10% off and a $5.00 coupon, is that possible?
  11. I have a website bavender.com that uses external product pages to add a custom product to the shopping cart. I tried the discount_plus contribution however it is not product category exclusive and the limit cannot be set Installed this contribution to allow ordering 5 getting the 6th free. The problem is, the custom product has a value of 0 until the attributes are assigned to it. Is there a way to get this to calculate all of the attributes totals then apply the discount I use the formula 2:5:1:q category 2, buy 5, 1 free, quantity.. Any Ideas anyone?
  12. website: bavender.com The issue is that when customers order6 custom shirts, the website is to apply a 16.67% discount to the final price of the 6 shirts. It works when the custom shirts have a quantity of 6, but when they have 6 different custom shirts in the cart the discount is not applied. If you test it, create a custom shirt and change the quantity to 6, it will apply the discount. Then try making 6 different shirts, it will not apply the discount. The issue must be related to the fact that they are added to the cart seperately. Is there a way to check the total of a product category and apply a percentage discount based on the amount ordered? Specifically in quantities of 6? Maybe there is a way to check how many of a product are in shopping_cart.php so a customer can have the discount applied on the total? I think I had this working previously, however I outsourced to have some work done on the custom shirt ordering page, now it does not work. Any suggestions, contributions or input is very welcome. I am willing to share code ;0) Sincerely, Jesse Rooney
  13. Another issue I ran into, is I have free shipping on orders over $150.00, but it still gives options to ship other methods (2nd day, next day) but the value is only 0 Are there any hacks to get around this?
  14. Hello everyone! Thanks for all of the great support out there, you have all been wonderful! website: http://www.bavender.com Here is the scenario: If I were the customer, and I bought 2 products, one from 2 different manufacturers, I need to charge per the zone, and per each manufacturer. I am currently running multi-geo zone shipping for 4 zones, but the client is requesting additional shipping configurations that include manufacturer shipping. that means if they choose ground, they pay $10 per item shipping until the order reaches $150 (we offer free shipping after $150.00) Basically, all product is shippd from different locations, and he needs to charge per each manufacturer. I currently a multi-geo zone shipping MZMT_Shipping_v1.100 installed which works great! This poses a new problem, I have no idea how to merge my current shipping configuration with manufacturer shipping. Are there any contribs that are workable in this situation? I have a few but I am leery to install due to lack of support on integration on some. Thanks for your support!
  15. Great contribution! See it in action elsewhere at http://www.bavender.com/index2.php Bavender Custom Clothiers - Custom Tailored Shirts, Sportswear, Outerwear, Cuff Links, Neckties, Pocket Squares I use it for navigation purposes, here is the code I used to attach it to my index2.php file ;0) Insert this and change the filename and file width/height to the appropriate sizes.. <?=// Start of flash header ?> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="751" height="348" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <?=// Check to see if a session id has been defined in the URL ?> <?php if ((isset($HTTP_GET_VARS['osCsid']) && ($HTTP_GET_VARS['osCsid'] != '')) || (tep_session_is_registered('osCsid'))) { ?> <?=// If so, append it the the osCsid variable so that flash gets the proper session info ?> <param name="movie" value="images/sportswear.swf?osCsid=<?=$_GET['osCsid'];?>" /> <?php } else { ?> <?=// If not, call the movie without defining the osCsid variable ?> <param name="movie" value="images/sportswear.swf" /> <?php } ?> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <?=// Check to see if a session id has been defined in the URL ?> <?php if ((isset($HTTP_GET_VARS['osCsid']) && ($HTTP_GET_VARS['osCsid'] != '')) || (tep_session_is_registered('osCsid'))) { ?> <?=// If so, append it the the osCsid variable so that flash gets the proper session info ?> <embed src="images/sportswear.swf?osCsid=<?=$_GET['osCsid'];?>" quality="high" bgcolor="#ffffff" width="751" height="348" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> <?php } else { ?> <?=// If not, call the movie without defining the osCsid variable ?> <embed src="images/sportswear.swf" quality="high" bgcolor="#ffffff" width="751" height="348" name="flash osc" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> <?php } ?> </object> <?=// End of flash header ?></th> Thank you again for the contribution!
×
×
  • Create New...