mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
https://github.com/easydigitaldownloads/library/blob/master/_checkout/one-item-checkout.html
6 lines
197 B
Text
6 lines
197 B
Text
function pw_edd_one_item_checkout( $download_id, $options ) {
|
|
if( edd_get_cart_quantity() >= 1 ) {
|
|
edd_empty_cart();
|
|
}
|
|
}
|
|
add_action( 'edd_pre_add_to_cart', 'pw_edd_one_item_checkout', 10, 2 );
|