PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.5.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.5.4
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/FrmField.php +2 -12 6.45.5.4 View file →
@@ -11,9 +11,9 @@
11 11 public static function field_selection() {
12 12 $frm_settings = FrmAppHelper::get_settings();
13 13 $active_captcha = $frm_settings->active_captcha;
14 14 if ( ! FrmFieldCaptcha::should_show_captcha() ) {
15 - $captcha_name = 'Captcha';
15 + $captcha_name = 'CAPTCHA';
16 16 } elseif ( $active_captcha === 'recaptcha' ) {
17 17 $captcha_name = 'reCAPTCHA';
18 18 } else {
19 19 $captcha_name = 'hCaptcha';
@@ -185,14 +185,8 @@
185 185 'name' => __( 'Signature', 'formidable' ),
186 186 'icon' => 'frm_icon_font frm_signature_icon frm_show_upgrade',
187 187 'addon' => 'signature',
188 188 ),
189 - 'ai' => array(
190 - 'name' => __( 'AI', 'formidable' ),
191 - 'icon' => 'frm_icon_font frm_eye_icon frm_show_upgrade',
192 - 'addon' => 'ai',
193 - 'message' => 'Streamline workflows and reclaim valuable time with the power of AI. You can effortlessly respond to your visitors in real-time with ChatGPT as your automated assistant. Upgrade to Pro and unlock AI-powered fields.',
194 - ),
195 189 'ssa-appointment' => array(
196 190 'name' => __( 'Appointment', 'formidable' ),
197 191 'icon' => 'frm_icon_font frm_calendar_icon frm_show_upgrade',
198 192 'require' => 'Simply Schedule Appointments',
@@ -216,12 +210,8 @@
216 210 'section' => 'pricing',
217 211 ),
218 212 );
219 213
220 - if ( ! FrmAppHelper::show_new_feature( 'ai' ) ) {
221 - unset( $fields['ai'] );
222 - }
223 -
224 214 // Since the signature field may be in a different section, don't show it twice.
225 215 $lite_fields = self::field_selection();
226 216 if ( isset( $lite_fields['signature'] ) ) {
227 217 unset( $fields['signature'] );
@@ -1083,9 +1073,9 @@
1083 1073
1084 1074 /**
1085 1075 * @param string $id
1086 1076 *
1087 - * @return null|string
1077 + * @return string
1088 1078 */
1089 1079 public static function get_key_by_id( $id ) {
1090 1080 return FrmDb::get_var( 'frm_fields', array( 'id' => $id ), 'field_key' );
1091 1081 }