mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
10 lines
319 B
Text
10 lines
319 B
Text
function sumobi_edd_hide_payment_icons() {
|
|
$cart_total = edd_get_cart_total();
|
|
|
|
if ( $cart_total )
|
|
return;
|
|
|
|
remove_action( 'edd_payment_mode_top', 'edd_show_payment_icons' );
|
|
remove_action( 'edd_checkout_form_top', 'edd_show_payment_icons' );
|
|
}
|
|
add_action( 'template_redirect', 'sumobi_edd_hide_payment_icons' );
|