hello i am trying to use PayPal Framework plugin to help me process IPN messages. I have installed plugin and configured both WP settings and PayPal settings to point all IPN messages to the PayPal Framework IPN listener. I am just having trouble on how to display this data. basically i would just like a page that my client can go to that displays all of the payments that have been received by the IPN listener. I understand the
add_action('paypal-ipn', 'my_process_ipn');
function my_process_ipn( $data ) {
echo 'Processing IPN Message:<pre>';
var_dump( $data );
echo '</pre>';
}
provided on the FAQ page but im having trouble how to translate this function to a page/template. any suggestions or help would be greatly appreciated !