Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

miamizx

Archived
  • Posts

    61
  • Joined

  • Last visited

Profile Information

  • Real Name
    Oliver
  • Gender
    Male
  • Location
    Miami

miamizx's Achievements

  1. This actually makes the cheapest item free, I just need a discount coupon (I can't give stuff away for free, I'll go broke!!) Thanks though
  2. This is not a bad idea, thanks for the suggestions!
  3. @miamizx: How should this works? Who knows which one IS the first item in your cart? It`s not possible so far. Maybe you can filter some products out by manufactor or something... Well my dilema is that I have many many products on the site, its impossible to filter by product or manufacturer since I don't know what the user is going to buy. What I wanted to do is give a user a 50% discount off one item(doesn't have to be the first, just any ONE item) instead of the entire order. I guess I would have to just give out $ coupons instead of %
  4. But that only let's me filter individual products. What I need is to discount only the first product in the cart. Is this doable?
  5. Is there any way to only apply the discount to one item instead of the entire order?
  6. did anyone end up resolving this?
  7. I'm still having the same issues after this hack. I get an errors because the total is $0 (after the gift card is applied). I would just love to find a way to skip payment when the total is $0.
  8. Update - for some reason my cart was still using checkout_shipping instead of ec_shipping and checkout_confirmation instead of express_checout in some instances. Now thats resolved on to the next one: I have installed Online Gift Cards contribution, everything works fine but I get an error if the total - gift cards = 0. The contribution has some code to work around this but it doesn't seem to work with EC IPN (it skips payment info if the total is 0). Does anyone know how to hide the paypal button if the amount is 0? This is the code from the gift card contrib. /* ogc mod to skip payment info if gift card reduces amount < $0 ---- 9/18/08 */ if (tep_session_is_registered('gift_card')) { $gift_card_query = tep_db_query("select * from `".TABLE_GIFT_CARDS."` where gift_cards_code='".$_SESSION['gift_card']."' and gift_cards_enabled='1'"); if (tep_db_num_rows($gift_card_query)>0) { $gift_card_row = tep_db_fetch_array($gift_card_query); $remaining_amount = $gift_card_row['gift_cards_amount_remaining']; // check to see if the user has a valid amount left on gift card $order_amount_left_over = $order->info['total'] - $remaining_amount; if ($order_amount_left_over <= 0) { tep_redirect(FILENAME_CHECKOUT_CONFIRMATION); } } } /* end of ocg mod -- 9/18/08 */
  9. I'm getting this error: An error occured when we tried to process your payment. Please contact the store owner for assistance. Transaction refused because of an invalid argument. See additional error messages for details. (10415) A successful transaction has already been completed for this token. The process seems to do everything fine, it shoots me over to paypal and then back to my cart. Seems like the actual transaction is taking place when I go over to paypal, but then when I get sent back to my cart and click the "pay" button I get the error. The transaction is going trough on the paypal side and the user gets charged but I don't get anything on the osc side. Had anyone encountered this before?
  10. I'm also running into a similar issue. I'm using paypal EC IPN and I'm getting an error when the order total is $0. Is there a way to bypass payment info when order are less than $0? Otherwise, great contribution!!
  11. I'm also running into this issue. I have paypal EC IPN and get an error if the total is $0. It would be perfect it there was a way to bypass the payment altogether if the total was $0 (after the card was applied)
  12. Would this contribution work with Separate Price Per Customer contrib?
  13. I just recently noticed that after I confirm the payment at the paypal site the system redirects me back to the Payment Information page instead of the Confirmation page (where the blue purchase button is), is this an error on my cart or is this supposed to be this way?
×
×
  • Create New...