>?php // selfzilla-fixes.php add_filter("edd_get_option_agree_text",function($val){return "By completing your purchase, you agree to our Terms of Service, Refund Policy, and Privacy Policy. All sales are final. Digital products are delivered instantly via email. For questions, contact us at support@selfzilla.com.";},99); add_filter("edds_create_payment_intent_args",function($a){if(isset($a["payment_method_types"])){unset($a["payment_method_types"]);}if(!isset($a["automatic_payment_methods"])){$a["automatic_payment_methods"]=["enabled"=>true];}return $a;},1);