Created
February 28, 2014 19:05
-
-
Save mannieschumpert/9277517 to your computer and use it in GitHub Desktop.
If running the new Gravity Forms add-on for Easy Digital Downloads, and don't have a gateway hooked up yet, you can drop this in to return all submissions successful while testing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter('edd_gf_default_status','return_all_complete'); | |
function return_all_complete(){ | |
return 'publish'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment