From da5098f7ec2e3c2686f67f0c7200f58509e33deb Mon Sep 17 00:00:00 2001 From: Mike Letellier Date: Tue, 30 Jun 2026 12:44:29 -0300 Subject: [PATCH 1/2] Remove beta flag from paypal commerce --- paypal/controllers/FrmPayPalLiteHooksController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/paypal/controllers/FrmPayPalLiteHooksController.php b/paypal/controllers/FrmPayPalLiteHooksController.php index 2abd8cb759..60408d4b0b 100644 --- a/paypal/controllers/FrmPayPalLiteHooksController.php +++ b/paypal/controllers/FrmPayPalLiteHooksController.php @@ -50,7 +50,6 @@ public static function load_admin_hooks() { function ( $options ) { // Make actions using the PayPal add-on use the same icon we use in Lite. $options['classes'] = 'frmfont frm_paypal_icon'; - $options['is_beta'] = true; return $options; } ); From bcf7db1b43aaaa5e6e8ee6765369e9b67b3f7cf1 Mon Sep 17 00:00:00 2001 From: Mike Letellier Date: Tue, 30 Jun 2026 12:47:52 -0300 Subject: [PATCH 2/2] Drop is beta from paypal legacy too --- classes/views/frm-form-actions/default_actions.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/classes/views/frm-form-actions/default_actions.php b/classes/views/frm-form-actions/default_actions.php index 9d2ab4236b..a1553ff1ea 100644 --- a/classes/views/frm-form-actions/default_actions.php +++ b/classes/views/frm-form-actions/default_actions.php @@ -57,8 +57,6 @@ public function __construct() { // POST data namespace with the PayPal add-on's 'paypal' action, which would make // both action controls save the same submission and create a duplicate action. $this->option_name = 'frm_' . $this->id_base . '_action'; - - $this->action_options['is_beta'] = false; } } }