• Resolved debby222

    (@debby222)


    How can I limit the balance description maybe to 5
    It’s too long let its have pagination to make it responsive

    Or am I missing something?
    https://paste.pics/G6U8F

    Please Check screenshot above

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Moumita Adak

    (@moumitaadak)

    Hi @debby222,

    Thanks for reaching out to us. Please add the below code in the functions.php file of your activated theme.

    add_filter('woo_wallet_transactions_count', 'woo_wallet_transactions_count_callback');
    if(!function_exists('woo_wallet_transactions_count_callback')){
        function woo_wallet_transactions_count_callback(){
            return 5;
        }
    }
    Thread Starter debby222

    (@debby222)

    Thanks for the code it’s works perfectly. But is there a way to add pagination to it to show others too

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How can I limit the balance description maybe to 5’ is closed to new replies.