mannieschumpert
2/28/2014 - 7:05 PM

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 a

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.

<?php

add_filter('edd_gf_default_status','return_all_complete');

function return_all_complete(){
  return 'publish';
}