• Resolved stephenboluwatife

    (@stephenboluwatife)


    Can I add this code to snippet

    add_filter(‘woo_wallet_transactions_count’, ‘woo_wallet_transactions_count_callback’);
    function woo_wallet_transactions_count_callback(){
    return 3;
    }

    To show user 5 recent transaction

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

    (@subratamal)

    @stephenboluwatife Use the attached code to display the last 5 transactions.

    add_filter('woo_wallet_transactions_count', 'woo_wallet_transactions_count_callback');
    function woo_wallet_transactions_count_callback(){
        return 5;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Code’ is closed to new replies.