PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.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/views/frm-settings/misc.php +12 -36 6.345.4 View file →
@@ -3,58 +3,34 @@
3 3 die( 'You are not allowed to call this page directly.' );
4 4 }
5 5 ?>
6 6 <p>
7 - <label>
7 + <label for="frm_tracking">
8 8 <input type="checkbox" name="frm_tracking" id="frm_tracking" value="1" <?php checked( $frm_settings->tracking, 1 ); ?> />
9 9 <?php esc_html_e( 'Allow Formidable Forms to track plugin usage to help us ensure compatibility and simplify our settings.', 'formidable' ); ?>
10 10 </label>
11 11 </p>
12 12
13 -<p>
14 - <label>
15 - <input
16 - type="checkbox"
17 - name="frm_summary_emails"
18 - id="frm_summary_emails"
19 - value="1"
20 - data-toggleclass="frm_summary_emails_recipients_wrapper"
21 - <?php checked( $frm_settings->summary_emails, 1 ); ?>
22 - />
23 - <?php esc_html_e( 'Send monthly and yearly summary emails with form and payment stats.', 'formidable' ); ?>
24 - </label>
25 -</p>
13 +<!-- Deprecated settings can only be switched away from the default -->
14 +<input type="hidden" id="frm_use_html" name="frm_use_html" value="1" />
26 15
27 -<p class="frm_summary_emails_recipients_wrapper frm_indent_opt <?php echo $frm_settings->summary_emails ? '' : 'frm_hidden'; ?>">
28 - <label for="frm_summary_emails_recipients"><?php esc_html_e( 'Summary email recipients', 'formidable' ); ?></label>
29 - <input type="text" name="frm_summary_emails_recipients" id="frm_summary_emails_recipients" value="<?php echo esc_attr( $frm_settings->summary_emails_recipients ); ?>" />
30 - <?php if ( FrmAppHelper::is_formidable_branding() && in_array( FrmAddonsController::license_type(), array( 'elite', 'business' ), true ) ) { ?>
31 - <span>
32 - <?php
33 - printf(
34 - /* translators: %1$s the opening link tag, %2$s the closing link tag */
35 - esc_html__( 'Summary emails can be disabled across multiple sites from %1$sFormidableForms.com%2$s.', 'formidable' ),
36 - '<a href="' . esc_url( FrmAppHelper::admin_upgrade_link( 'misc-settings', 'account/profile/' ) ) . '" target="_blank" rel="noopener">',
37 - '</a>'
38 - );
39 - ?>
40 - </span>
41 - <?php } ?>
42 -</p>
43 -
16 +<?php if ( empty( $frm_settings->use_html ) ) { ?>
44 17 <p>
45 - <label>
46 - <input type="checkbox" name="frm_admin_bar" id="frm_admin_bar" value="1" <?php checked( $frm_settings->admin_bar, 1 ); ?> />
47 - <?php esc_html_e( 'Do not include Formidable in the admin bar.', 'formidable' ); ?>
18 + <label for="frm_use_html">
19 + <input type="checkbox" id="frm_use_html" name="frm_use_html" value="1" <?php checked( $frm_settings->use_html, 1 ); ?> />
20 + <?php esc_html_e( 'Use HTML5 in forms', 'formidable' ); ?>
48 21 </label>
22 + <span class="frm_help frm_icon_font frm_tooltip_icon"
23 + title="<?php esc_attr_e( 'We recommend using HTML 5 for your forms. It adds some nifty options like placeholders, patterns, and autocomplete.', 'formidable' ); ?>"></span>
49 24 </p>
25 +<?php } ?>
50 26
51 27 <p class="frm_uninstall">
52 - <label>
28 + <label for="frm-uninstall-box">
53 29 <input type="checkbox" id="frm-uninstall-box" value="1" onchange="frm_show_div('frm_uninstall_now',this.checked,true,'#')" />
54 30 <?php esc_html_e( 'Uninstall Formidable Forms and permanently delete all data.', 'formidable' ); ?>
55 31 </label>
56 - <a href="javascript:void(0)" id="frm_uninstall_now" class="frm_hidden" data-frmverify="<?php esc_attr_e( 'Are you sure you want to delete all forms, form data, and all other Formidable data. There is no Undo.', 'formidable' ); ?>" data-frmverify-btn="frm-button-red" data-frmuninstall="1">
32 + <a href="javascript:void(0)" id="frm_uninstall_now" class="frm_hidden" data-frmverify="<?php esc_attr_e( 'Are you sure you want to delete all forms, form data, and all other Formidable data. There is no Undo.', 'formidable' ); ?>" data-frmuninstall="1">
57 33 <?php esc_html_e( 'Uninstall Now', 'formidable' ); ?>
58 34 </a>
59 35 <span class="frm-wait frm_spinner"></span>
60 36 </p>