Can you view source on that page and find the string txnRevPerDay or txnRevPerEvent within the source? It will be near the bottom of the page source. These will have the output JavaScript object prepped by wp_localize_script() that is being used for the charts. They’ll look like this.
That will help us know whether there’s unexpected data in that object.
/* <![CDATA[ */
var txnRevPerDay = {“title”:”Total Revenue per Day”,”subtitle”:”For the period: 2016-01-10 to 2016-02-10″,”id”:”txn-admin-revenue-per-day-report-dv”,”revenue”:[[“Date (only shows dates that have a revenue greater than 1)”,”Total Revenue”]],”noResults”:””,”noTxnMsg”:”<h2>Total Revenue per Day<\/h2><p>There are currently no transaction records in the last month for this report.<\/p>”};
var txnRevPerEvent = {“title”:”Total Revenue per Event”,”subtitle”:”For the period: 2016-01-10 to 2016-02-10″,”id”:”txn-admin-revenue-per-event-report-dv”,”revenue”:[[“Event (only events that have a revenue greater than 1 are shown)”,”Total Revenue”]],”noResults”:””,”noTxnMsg”:”<h2>Total Revenue per Event<\/h2><p>There are currently no transaction records in the last month for this report.<\/p>”};
/* ]]> */
only shows dates that have a revenue greater than 1
Could this be because my one test transaction is £0.01?
Yes that’s it! Once you have at least $1.00 in transactions the error will go away.
Viewing 3 reply threads
The support post ‘Transactions > Reports’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.