How to make Woocommerce not to save Checkout billing fields

試著忘記壹切 提交于 2019-11-30 07:38:57

问题


I have a particular case where I need many people to login to ONE specially created user (one login name and one password for all) and purchase items through it. The problem is if Person A logins with this ONE user credentials and makes a purchase he will leave a trace in shipping/billing details, person B will then see those details when in checkout page. Woocommerce saves those details by default, how could I disable that? How can I make Woocommerce Chechout page to always have empty fields with no prepopulated data from previous purchases?

Thanks! Mantas


回答1:


you need this filter... this filter is meant to overwrite the values being displayed at checkout... below will return empty string... to empty the values being displayed.

add_filter('woocommerce_checkout_get_value','__return_empty_string',10);

But this does not mean, these values won't be seen in other places.. like "My Account" page..



来源:https://stackoverflow.com/questions/35318793/how-to-make-woocommerce-not-to-save-checkout-billing-fields

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!