Last active
August 29, 2015 14:10
-
-
Save supercleanse/8a59e127a7f10387e24b to your computer and use it in GitHub Desktop.
MemberPress Transaction Count for a given user & product
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$mpdb = new MeprDb(); | |
$count = $mpdb->get_count($mpdb->transactions, array( | |
'user_id'=>$txn->user_id, | |
'product_id'=>$txn->product_id, | |
'status'=>'complete')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment