Replies: 0
Currently having some trouble with the Paypal Recurring donations. When non-recurring donations happen it is fine, however if checked for recurring it DOES NOT use the page styles that we setup in Settings. It defaults to an ugly PayPal screen.
Also, we are using a filter to adjust the item name by passing our custom field “missionary”.
function cp_give_payment_gateway_item_title( $item_name ) {
if(isset($_POST['select_missionary'])) {
return $_POST['select_missionary'][0];
};
return $item_name;
}
add_filter( 'give_payment_gateway_item_title', 'cp_give_payment_gateway_item_title' );
On single donation, it works just fine however if the recurring box is checked it doesn’t work. Any ideas?