• Resolved jrtacazily

    (@jrtacazily)


    hello sir, I need your help.
    I try to top up wallet with COD, and automatically the balance is increase without cornfirmation completed from admin dashboard.

    how to fix this ? thanks for the answer..

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

    (@subratamal)

    @jrtacazily,
    Please use below code snippet to themes function.php file to restrict auto credit for COD payments.

    add_filter('woocommerce_cod_process_payment_order_status', 'woocommerce_cod_process_payment_order_status_callback', 10, 2);
    
    function woocommerce_cod_process_payment_order_status_callback($status, $order){
        if(function_exists('is_wallet_rechargeable_order') && is_wallet_rechargeable_order($order)){
            return 'on-hold';
        }
        return $status;
    }

    Thanks and Regards,
    Subrata Mal

    Thread Starter jrtacazily

    (@jrtacazily)

    woww, thanks sir its working.. 🙂

    Plugin Author Subrata Mal

    (@subratamal)

    @jrtacazily,

    Could you please consider posting a review of our plugin? In addition to providing feedback, reviews can help other users to know who we are and what our plugin does.

    Cheers!!!

    Thread Starter jrtacazily

    (@jrtacazily)

    Your plugin is so much to help me, because the simplicity but powerfull.

    Can I ask you again? how to make woocommerce endpoints for this woo wallet ? because I use plugin “WP Mobile Menu” and woo wallet not show the menu Primary Menu, Vertical Menu, or Mobile Menu, and I have already to tick checkbox on woo wallet settings “Mini wallet display location”.

    I think if woo wallet have the woocommerce endpoints, it can be show up on the Appearance -> Menus. thanks so much to help me..

    • This reply was modified 8 years, 1 month ago by jrtacazily.
    • This reply was modified 8 years, 1 month ago by jrtacazily.
    Plugin Author Subrata Mal

    (@subratamal)

    Please flow https://gist.github.com/claudiosanches/a79f4e3992ae96cb821d3b357834a005 documentation.

    Thanks and Regards,
    Subrata Mal

    Thread Starter jrtacazily

    (@jrtacazily)

    	public function endpoint_content() {
    		echo '<p>Hello World!</p>';
    	}

    I think in this section must change the code, but I dont know..hehe

    Plugin Author Subrata Mal

    (@subratamal)

    @jrtacazily,

    Please use our GitHub version we have added this functionality there.

    Could you please consider posting a review of our plugin? In addition to providing feedback, reviews can help other users to know who we are and what our plugin does.

    Cheers!!!

    Thread Starter jrtacazily

    (@jrtacazily)

    Woww, its working like a magic sir… :))
    but how to make the value of deposit/balance is showing like the desktop web version ?
    thanks alot for your superfast respons…hehe

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘top up wallet with COD’ is closed to new replies.