You may wish to do financial reconciliation between your GiveWP donations and Raiser's Edge NXT's gifts. BBMS Is Blackbaud Merchant Services and is the payment provider of choice for Blackbaud clients.
Unfortunately GiveWP do not by default export the Transaction ID from donations unless you specify the donation form used. The below allows you to export data from all your donation forms along with the Transaction ID from the BBMS.
- Install the free Chrome Extension: CJS (https://chrome.google.com/webstore/detail/custom-javascript-for-web/ddbjnfjiigjmcpcpkmhogomapikjbjdkadd)
- Visit your GiveWP Export page. This is in the WordPress admin area under Donations > Tools > Export CSV.
- Then click the CJS icon top right of Chrome and paste in the below code

The code:
- if (window.location.href.indexOf('type=export_donations') != -1) {
- setInterval(function() {
- var $ = jQuery;
- if ($('.give-export-donation-button').length == 0) { return; }
- if ($('#give-give-donations-hidden-field-_give_bbms_payment_token').length > 0) { return; }
- $('.give-export-donation-button').before(
- '<div style="left:-9999px;position:absolute">' +
- '<input type="checkbox" name="give_give_donations_export_option[_give_bbms_payment_token]" id="give-give-donations-hidden-field-_give_bbms_payment_token" checked>' +
- '<input type="checkbox" name="give_give_donations_export_option[_give_payment_transaction_id]" id="give-give-donations-hidden-field-_give_payment_transaction_id" checked>' +
- '</div>'
- );
- }, 50);
- }
When you now click Export you should have two additional columns with the BBMS Payment Token and BBMS Transaction ID.