Hey @hewijess
We appreciate the very kind 5-star review.
Unfortunately, we will require more information to rectify this concern, can you please detail the current workflow and what exactly is not working.
Are you receiving an error after the payment has been processed?
Our support team developed a code snippet that may potentially help, you can integrate this in a mu-plugin (must-use)* :
add_filter(
'http_request_args',
function( $parsed_args, $url ) {
if ( strpos( $url, 'paypal.com/v2/checkout' ) && isset( $parsed_args[ 'body' ] ) && is_array( $parsed_args[ 'body' ] ) && empty( $parsed_args[ 'body' ] ) ) {
$parsed_args[ 'body' ] = '';
}
return $parsed_args;
},
10,
2
);
You can save the code as a simple text file with a .php extension and upload the file to the “/wp-content/mu-plugins” folder of your site; if there’s no “mu-plugins” folder right in the “wp-content” folder, just create it.
We look forward to hearing from you,
Kindly,
Ryan