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

    (@subratamal)

    @oneminduniv,

    You can use woo_wallet_account_topup_menu_title.

    Thread Starter oneminduniv

    (@oneminduniv)

    Sorry, not very good with PHP. I put together this filter, but it is not working.

    `function replace_text($text) {
    $text = str_replace(‘woo_wallet_account_topup_menu_title’, ‘Add Money’, $text);
    return $text;
    }
    add_filter(‘the_content’, ‘replace_text’);

    Thank you

    Plugin Author Subrata Mal

    (@subratamal)

    Please use below code.

    add_filter('woo_wallet_account_topup_menu_title', 'woo_wallet_account_topup_menu_title_callback');
    
    function woo_wallet_account_topup_menu_title_callback($text){
        return 'Add Money';
    }
    Thread Starter oneminduniv

    (@oneminduniv)

    Worked!

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change Text “Topup”’ is closed to new replies.