Subrata Mal

Forum Replies Created

Viewing 15 posts - 121 through 135 (of 206 total)
  • Author
    Posts
  • Subrata Mal
    Keymaster
    Post count: 207

    Hi @paul,

    Thanks for reaching out. This can be done using some custom code. Please let us know if you are interested in paid support.

    Subrata Mal
    Keymaster
    Post count: 207

    You can disable wallet top-up by adding below code in theme function.php file.

    add_filter('woo_wallet_is_enable_top_up', '__return_false');

    Subrata Mal
    Keymaster
    Post count: 207

    Yes, wallet top-up product is a private product. If not then this will appear in the shop page. You have to use a filter from the membership plugin and exclude the top-up product. If you share your site information then maybe we can help you more on this.

    Subrata Mal
    Keymaster
    Post count: 207

    Hi,

    Thanks for reaching out. You can exclude wallet top-up product from discount rules.

    Subrata Mal
    Keymaster
    Post count: 207

    You can post here by checking on Set as private reply checkbox. Or you can send us an email at support@woowallet.in

    Subrata Mal
    Keymaster
    Post count: 207

    There is a coding error. If you share your site access details then we can do it for you.

    Subrata Mal
    Keymaster
    Post count: 207

    We have a filter for this. You can use woo_wallet_process_cashback_status to add custom order status like below code.

    add_filter(‘woo_wallet_process_cashback_status’, ‘woo_wallet_process_cashback_status_callback’);

    function woo_wallet_process_cashback_status_callback($status){
        $status['custom_status'] = 'Custom status';
        return $status;
    }

    In the function.php file.

    Subrata Mal
    Keymaster
    Post count: 207

    Our plugin is not compatible with any multicurrency plugin. We are creating a multicurrency supported addon will be published soon as paid addon.

    Subrata Mal
    Keymaster
    Post count: 207
    in reply to: bitcoin #3430

    Yes right. If it is a WooCommerce payment gateway then the amount will be added automatically to user wallet after successful transaction.

    Subrata Mal
    Keymaster
    Post count: 207

    Please use below CSS code in theme style.css file to remove the grey background.

    .woo-wallet-my-wallet-container .woo-wallet-sidebar{
        background: white !important;
    }
    Subrata Mal
    Keymaster
    Post count: 207

    I think there is an error in code at your theme function.php file line no 250. Please check and let us know.

    Subrata Mal
    Keymaster
    Post count: 207

    Hi,

    Could you please share a screenshot of that page?

    Subrata Mal
    Keymaster
    Post count: 207

    Please insert the code snippet at active theme function.php file. And also to disable partial payment please use this code in theme function.php file

    add_filter('woo_wallet_disable_partial_payment', '__return_true');

    Subrata Mal
    Keymaster
    Post count: 207

    You can just override the mini wallet template into the theme folder and change the link.

    Subrata Mal
    Keymaster
    Post count: 207

    We have filter woo_wallet_process_cashback_status for this you can use this filter like below code.

    add_filter('woo_wallet_process_cashback_status', 'woo_wallet_process_cashback_status_callback');
    function woo_wallet_process_cashback_status($status){
        $status['custom_status'] = 'Custom Status';
        return $status;
    }
Viewing 15 posts - 121 through 135 (of 206 total)
WhatsApp