Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

trk247

Archived
  • Posts

    2
  • Joined

  • Last visited

Everything posted by trk247

  1. Nevermind above post, I found my answer in modules/payment/paypal.php
  2. I'm trying to link directly to paypal from the shopping cart, avoiding all the login, shipping prefs, etc. I'm able to get this work work if I were logged on, but I'm trying to avoid that. So within shopping_cart.php, I've added the necessary modules to call the necessary classes to create the form that links to paypal. Everything from the form looks just fine, but these values are displayed as is without any value="something" which seems right. But when I click the link to paypal, it brings me to the standard paypal login page, not the make a payment page... Here's part of the form that goes to paypal where the values do not exist. <input type="hidden" name="email"> <input type="hidden" name="first_name"> <input type="hidden" name="last_name"> <input type="hidden" name="address1"> <input type="hidden" name="address2"> <input type="hidden" name="city"> <input type="hidden" name="state"> <input type="hidden" name="zip"> <input type="hidden" name="lc"> So will paypal allow a transaction to complete if these values are omitted? And in which file are these being created so I can comment out? Any other items that I should be aware of? Thanks for any response! Below is the full form if that helps: <form name="checkout_confirmation" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_ext-enter"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="return" value="http://karmabarbecue.com/store/catalog/checkout_process.php?osCsid=0fed4600b1db85e0aee09ba2130e602a"> <input type="hidden" name="cancel_return" value="http://karmabarbecue.com/store/catalog/checkout_payment.php?osCsid=0fed4600b1db85e0aee09ba2130e602a"> <input type="hidden" name="item_name" value="Karma Barbecue"> <input type="hidden" name="redirect_cmd" value="_xclick"> <input type="hidden" name="amount" value="0.01"> <input type="hidden" name="shipping" value="0.00"> <input type="hidden" name="rm" value="2"> <input type="hidden" name="cancel_return" value="http://karmabarbecue.com/store/catalog/checkout_payment.php?osCsid=0fed4600b1db85e0aee09ba2130e602a"> <input type="hidden" name="custom" value="0fed4600b1db85e0aee09ba2130e602a"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="email"> <input type="hidden" name="first_name"> <input type="hidden" name="last_name"> <input type="hidden" name="address1"> <input type="hidden" name="address2"> <input type="hidden" name="city"> <input type="hidden" name="state"> <input type="hidden" name="zip"> <input type="hidden" name="lc"> <input type="hidden" name="no_note" value="0"> <input type="hidden" name="cn" value="Add Comments About Your Order"> <input type="hidden" name="cs" value="1"> <input type="hidden" name="item_number" value="Ourobouros"> <input type="image" src="includes/languages/english/images/buttons/button_confirm_order.gif" border="0" alt="Confirm Order" title=" Confirm Order "> </form>
×
×
  • Create New...