Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

thedream

Pioneers
  • Posts

    61
  • Joined

  • Last visited

Profile Information

thedream's Achievements

  1. Hi guy and Mister Vger. I have found a small bug, here it is: When a customer use a coupon (send by email, for example) to do shopping, everything is working fine. I have discovered that the script didn't take into account the expiration date of this coupon. It takes into account the expiration date, only when the query is made in the checkout_payment page, but not after !!! In fact a coupon can have a year longevity, but your script is not checking the expiration date. If the balance is positive, then the customer can use the coupon even 100 years after!!! I am going to find a solution from now, but If anubody has a try on it, it will be great ! Best regards, Marc
  2. Hi Guys. I have a bug, I don't have seen the last time: when I try to redeem a coupon code containing a pourcentage rebate (for ex 10%), after entering the redeem code, I get the classical error message telling me that I have to read the coupons instructions on the checkout_payment.php page. When I try a second time, the code is redeemed with the correct message applied telling me that the reduction is active ! And it's works all the time will all the code. I mean I have always to do twice the action to get it redeemed ! Do you know this bug? I can't find it in the forum, and over the 109 pages... Another bug is that none of the coupon used are listed in the coupon_admin.php page. It's always listed at 0. What should I check? Please help, Marc
  3. Hi Guys. I have installed the contribution a year and half ago. I have a bug, I don't have seen the last time: when I try to redeem a coupon code containing a pourcentage rebate (for ex 10%), after entering the redeem code, I get the classical error message telling me that I have to read the coupons instructions on the checkout_payment.php page. When I try a second time, the code is redeemed with the correct message applied telling me that the reduction is active ! And it's works all the time will all the code. I mean I have always to do twice the action to get it redeemed ! Do you know this bug? I can't find it in the forum, and over the 109 pages... Please help, Marc
  4. Here is the page for a product. Product: Anneau Quantity to Qualify: 2 Maximum Free Products: 100 Free Product: Anneau 2 Free Product Quantity: 1 Expiry Date: Calendar The dream
  5. Hi Jim. My purpose is just to answer to my clients who don't understand why the don't have the ratio of the free product ordered, as the logical: for example I order 2 I get 1 free, I order 4, I get 2 free, etc. There is a ratio thing. For the moment if they order 2, 3, 4 or more they get only 1. They don't understand. So I am trying to respect your code as "buy x get y free", but if you order 3 x, you wil get 3 more free products... I have made the following changes: $output = array ( 'id' => $get_1_free['products_free_id'], //'quantity' => $free_quantity, 'quantity' => floor($products_quantity*($get_1_free['products_free_quantity']/$get_1_free['products_qualify_quantity'])), 'name' => $products_free['products_name'], 'model' => $products_free['products_model'], 'image' => $products_free['products_image'], //'weight' => $products_free['products_weight'] 'weight' => $products_free['products_weight']*floor($products_quantity*($get_1_free['products_free_quantity']/$get_1_free['products_qualify_quantity'])) ); It's working, except for one thing. when you do an update of the quantity on the products qualified for the free product, a new free product with its normal price is added to the cart, and I don't know how to correct this. This code take the entire part of the ration with the setup made in the Get 1 free admin. With the ability to have: buy 1 get 0 free, buy 2 get 1 free (the ratio), buy 3 get 1 free, buy 4 get 2 free (a multiple of the ratio [qty*(qty free/Qty qualified)], etc... Am I wrong or not? We just have to find how to correct the resulting bug.
  6. Thanks for replying. I set always 100 on the maximum free products, even if I have 35 products on stock. Any ideas?
  7. Hi there. I have noted a bug with the quantity. The setup is by 2 packs and get 1 free. Ok. If my clients take 3, he get 1 free, normal (2+1 products = 1+0 free) But if he takes 4 packs of the same products, he didn't get the multiple of the free product, tht's normally 2 free products. Do you have an idea to correct this? Best regards, :thumbsup:
  8. Hi Chemo and others. Thank you very much for this contributions that's make Google and others love me! A question: How would you modify your code to exclude some words from your script when the length of words is reached? I explain myself: you recommend to not go under a limit of 3 characters. So I id it, I put a limit of 3. But for particular-very-impoortant-words, as brands or models of product, those 3 letters words are fundamentals. How can I change your code in the seo.class.php, to exclude some 3 letters words from this rule? For exemple: the brand "Beauty Boy" is actually: www.mysite.com/product-beauty-c-49_102.html I would like: www.mysite.com/product-beauty-boy-c-49_102.html How can we do that? Best regards, Marc, one your biggest fan as a Code God you are !
  9. ***UPDATE*** I have found something interesting !: This case appear only when the offer concern the same products, for example: if you get 2 chairs and you get the third one free, you will get the update bug ! insteed of if you get 2 chairs you get 1 table free, the update bug doesn't appear! Hope this help Kymation...
  10. Great contrib, thank you kymation ! I confirm there is a small bug in the shopping cart: When you do an update on the shopping cart page (shopping_cart.php) and modifying the quantity of the free product OR another one, the shopping cart set the product quantity (the one you have to pay) to 1, and the free product is deleted ! The trick is if the number of product you have to pay is under the number set in the admin part, and you set the amount required, the process is going well. But if you do another time setting 1 more, the free products desappear again! Any ideas to correct this?
  11. Thanks for replying Ken. Don't you have a tiny bug with the Gift Voucher file on counting the final prices with 1 or more (aka in Europe) different VAT?
  12. Sorry Vger. Client Discount is a mod of mine, and is not in the package. Could you be kind enough to tell me the diiference between CCGV 5.16 and CCGV(trag)? Because it's a little bit confusing. Who's the best? who's the orginbal? Which one to use?
  13. Hi Vger, Thank you for the reply, but it's is not this. Here are the order of my Order Total modules (translated in English): Sub-Total (incl tax) - 1 Client Discount - 2 Discount Coupon - 3 Shipping - 4 Gift Voucher - 5 Total to Pay - 6 Taxes included - 7 It's works perfectly with the Christian P. tax fix for the discount coupon, but the ot_gv.php is not corrected by this fix. In Europe we have several different taxes. All my taxes are fully functionnal for 1 year, the discount coupon with the Christian P. fix works perfectrly, by the gift voucher is nuts... Have an idea?
  14. Hi There. I am looking a solution to fix the amount of a gift voucher, in the case of it's computing all the time the subtotal and the shipping, WHITOUT taxes! As many osCommerce shopper, my prices includes differents VAT and prices are schowned including taxes. Here is an exemple: Sub-Total (including VAT): 14,40 ? Shipping (Incl. VAT) (J+3) (0.266 kg): 6,10 ? Gift Voucher: 18,75 ? Total to pay: 0,00 ? The trick is 14.40+6.10 is not 18.75 but 20.50. I think we have to redo a part of the ot_gv.php code, but in wich way? Please help this wonderful contrib to FULLY works...
×
×
  • Create New...