• Resolved mohamednour

    (@mohamednour)


    i need to change this message in checkout page when balance is not enough

    “Sorry , it seems there is no enough balance in your account wallet . Please add balance to your account from ” My Account > My Wallet ” and choose wallet topup , Thanks !

    from where can i edit it ?

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

    (@subratamal)

    @mohamednour Please let us know what message is currently showing at checkout page?

    Thread Starter mohamednour

    (@mohamednour)

    “Sorry , it seems there is no enough balance in your account wallet . Please add balance to your account from ” My Account > My Wallet ” and choose wallet topup , Thanks !”

    when the wallet balance is not enough

    Plugin Author Subrata Mal

    (@subratamal)

    @mohamednour Could you please share a screenshot of where do you want to show this message?

    Thread Starter mohamednour

    (@mohamednour)

    Plugin Contributor Moumita Adak

    (@moumitaadak)

    Hi,
    Please add the below code in functions.php file of your activated theme.

    add_filter('woocommerce_no_available_payment_methods_message', 'woocommerce_no_available_payment_methods_message_callback');
    
    if(!function_exists('woocommerce_no_available_payment_methods_message_callback')){
        function woocommerce_no_available_payment_methods_message_callback(){
            return __('Sorry, it seems there is no enough balance in your wallet account. Please add balance to your account from "My Account > my Wallet" and choose wallet topup, Thanks!');
        }
    }

    Thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change low balance of wallet in checkout page’ is closed to new replies.