Rating: 1 star
We tried using this plugin, but was causing way more issues than it was solving. After going back to a standard PayPal plugin, all the issues we were having were gone, and we no longer had any problems with payments going through.
When we asked the developer about the issue, they said they’d have to get ahold of PayPal and enable something on our account, which when we called PayPal and asked them the same thing, they said it wasn’t required on our account and we’d have to pay extra to have that enabled. Wish I remembered exactly what it was called, but the safest bet is to go directly through PayPal and not this third party. I can’t recommend this plugin to anyone.
]]>Rating: 3 stars
Using 1.2. So far I had to re-stylize the few fields included in the plugin. Definitely needs to have options for additional customer fields (name, address). I have not tested the payment page out yet, waiting on SSL.
I added simple feature to pass in fields like amount and item via querystring. I think this is definitely a need feature
$queryAmount = (float)($_GET["amount"]);
$queryInvoice = (float)($_GET["invoice"]);
$queryParameters = array(
'item_name' => $queryInvoice,
'item_amount' => $queryAmount);
if ($queryAmount !== "" && !empty($queryAmount)) {
// echo '<pre>'.print_r( 'query Params: ' . $queryParameters, true ).'</pre>';
// Extract querystring args
extract(shortcode_atts(array(
'item_name' => 'item_name',
'item_amount' => 'item_amount',
'url' => '',
'button_text' => 'Buy Now'), $queryParameters));
} else {
//echo '<pre>'.print_r( 'shortcode' . $atts, true ).'</pre>';
// Extract shortcode args
extract(shortcode_atts(array(
'item_name' => 'item_name',
'item_amount' => 'item_amount',
'url' => '',
'button_text' => 'Buy Now',), $atts));
}
]]>
Rating: 3 stars
Thanks for the plugin. It better work. And BTW I gave 3 stars and not 5 for you rating your own plugin…
]]>Rating: 5 stars
Works 100% as advertised.
Thanks!!