Terra wallet plugin snippets WordPress / Woocommerce
remove cashback notice from shop page. add_filter(‘woo_wallet_product_cashback_html’, ‘__return_false’); disable wallet partial payment. add_filter( ‘woo_wallet_disable_partial_payment’, ‘__return_true’ ); to view the wallet product. add_filter(‘woo_wallet_hide_rechargeable_product’, ‘__return_false’); to disable cashback if coupon applied in an order. add_filter( ‘process_woo_wallet_general_cashback’, ‘process_woo_wallet_general_cashback_callback’, 10, 2 ); if ( ! function_exists( ‘process_woo_wallet_general_cashback_callback’ ) ) { /** * Disable cashback if coupon applied. * * […]
Terra wallet plugin snippets WordPress / Woocommerce Read More »