Jump to content


Corporate Sponsors


Latest News: (loading..)

crimble crumble

Member Since 13 Jul 2005
Offline Last Active Mar 21 2012, 02:19
-----

Posts I've Made

In Topic: remove item from cart instantly?

21 March 2012, 02:20

View PostDunWeb, on 28 January 2012, 22:20, said:

@crimble crumble.

Ajax Shopping Cart will do what you want, however it was written for RC2a and will need to be updated for use with v2.3.1.



Chris

Thanks. This is exactly what I was looking for.

In Topic: Paypal Standard IPN phone number field required?

09 February 2012, 03:17

I found this on the paypal developer forum.

Quote

The "Contact Telephone" option collects a phone number that is shared with the merchant along with the payment notification.

The telephone number collected on the Billing page of the Account Optional checkout is not shared with the merchant.

So I'm assuming the telephone number is required by paypal for customers checking out with credit cards. Does this jibe with everyone else using paypal standard ipn?

In Topic: Paypal Standard IPN phone number field required?

09 February 2012, 01:02

View PostDunWeb, on 08 February 2012, 23:40, said:

@crimble crumble,

I do believe that you can change that setting in your PayPal profile under 'website payments'




Chris

Yes, it is set to off which leads me to believe the problem is on my end.

In Topic: No Paypal button with Paypal Standard instal

30 January 2012, 18:32

Why can't the GetExpressCheckoutDetails api call be used to retrieve the payers name and address?

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_r_GetExpressCheckoutDetails

if( isset($_GET['token']) && !empty($_GET['token']) ) { // Token parameter exists
// Get checkout details, including buyer information.
// We can save it for future reference or cross check with the data we have
$checkoutDetails = paypalApiRequest('GetExpressCheckoutDetails', array('TOKEN' => $_GET['token']));

// Complete the checkout transaction
$requestParams = array(
  'PAYMENTREQUEST_0_PAYMENTACTION' => 'Sale',
  'PAYERID' => $_GET['PayerID']
);

$response = paypalApiRequest('DoExpressCheckoutPayment',$requestParams);
if( is_array($response) && $response['ACK'] == 'Success') { // Payment successful
  // We'll fetch the transaction ID for internal bookkeeping
  $transactionId = $response['PAYMENTINFO_0_TRANSACTIONID'];
}


It would be easy to automatically create an account from that information
Surely someone has done this?

In Topic: No Paypal button with Paypal Standard instal

30 January 2012, 17:29

View PostDunWeb, on 30 January 2012, 14:02, said:

@crimble crumble.

You will find the PayPal express module DOES require an account.



Chris

That's too bad. No doubt because of the lack of API functionality with standard payments. You would think PayPal would at least have API available for Express payments.