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

    (@subratamal)

    @stephenboluwatife Use CSS code

    .woo-wallet-icon-wallet{
        display: none;
    }
    .woo-wallet-menu-contents .woocommerce-Price-amount{
        color: red;
    }
    Thread Starter stephenboluwatife

    (@stephenboluwatife)

    Thanks it work. But please one more question how can I set it to be 5 transaction after 5 transaction there can click next or 2 to see the next page transaction but I want the Frist transaction to be 5 only

    Plugin Author Subrata Mal

    (@subratamal)

    @stephenboluwatife You can limit the transaction using filter woo_wallet_transactions_count but can’t add a link to the next page.

    add_filter('woo_wallet_transactions_count', 'woo_wallet_transactions_count_callback');
    function woo_wallet_transactions_count_callback(){
        return 5;
    }
    Thread Starter stephenboluwatife

    (@stephenboluwatife)

    i want to increse the size of this [mini-wallet] this mini wallet how can i increase the size

    Thread Starter stephenboluwatife

    (@stephenboluwatife)

    And please the [mini-wallet] there is a line under the balance please how can I remove the line there.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Transaction limit’ is closed to new replies.