• Resolved roberto22

    (@roberto22)


    Hi,

    As admin where can i see whats the total wallet amount of all users? So in case they all want to cash out i would know how much money i need to have.

    I know i can see what each user has but not the sum of all.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Subrata Mal

    (@subratamal)

    @roberto22 For that we have to write some custom code. Please reach out to our support email [email protected] regarding this.

    Plugin Author Subrata Mal

    (@subratamal)

    @roberto22

    Please use the attached code in the theme functions.php file to view total credit in the admin section.

    add_action('woo_wallet_before_balance_details_table', 'woo_wallet_before_balance_details_table_callback');
    
    if(!function_exists('woo_wallet_before_balance_details_table_callback')){
    ??? function woo_wallet_before_balance_details_table_callback(){
    ??????? $args = array(
    ??????????? 'blog_id' => $GLOBALS['blog_id'],
    ??????????? 'fields' => 'ID',
    ??????????? 'meta_query' => array(
    ??????????????? array(
    ??????????????????? 'key' => '_is_wallet_locked',
    ??????????????????? 'compare' => 'NOT EXISTS'
    ??????????????? )
    ??????????? )
    ??????? );
    ??????? $total_remaining_balance = 0;
    ??????? $users = get_users($args);
    ??????? foreach ($users as $user_id) {
    ??????????? if (get_user_meta($user_id, '_current_woo_wallet_balance', true)) {
    ??????????????? $total_remaining_balance += get_user_meta($user_id, '_current_woo_wallet_balance', true);
    ??????????? }
    ??????? }
    ??????? echo '<p>Total remaining credit: '. wc_price($total_remaining_balance).'</p>';
    ??? }
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Wallet total of all users’ is closed to new replies.