• Resolved indrapalkushwaha

    (@indrapalkushwaha)


    Hi Team,

    I want to hide wallet topup option and want show Referrals tab option on first and the Transaction Tab option.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Im not related to the plugin or the support team.

    To hide wallet TopUp option, just use css, find the class that wraps the option and set display to none. Example

    .topupwrapper{display: none;}

    Regarding the rearrangement of the other options, you will have to modify the plugins source code with Php which I assume you don′t know how to use.

    If you get somebody experienced, this shouldn′t take more than 15-20 mins to get done.

    The css code to hide the TopUp option on My Account is as follows:

    .woo-wallet-sidebar ul li.card:first-child {
        display: none;
    }
    • This reply was modified 1 year, 8 months ago by poll0none.
    Plugin Author Subrata Mal

    (@subratamal)

    @poll0none Thanks for your help. @indrapalkushwaha you can disable wallet top-up option using the attached filter in theme functions.php file.

    add_filter('woo_wallet_is_enable_top_up', '__return_false');
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Wallet Topup option and rearrange tab options’ is closed to new replies.