force customers to add only single item to card per purchase EDD [closed]

I searched a lot and find a way to do it.

add following to theme functions.php file:

add_filter( 'edd_pre_add_to_cart_contents', '__return_false' );

Source: https://gist.github.com/amdrew/2192eb02839fcdf9e3d2

Thanks!