PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.35
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.35
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
formidable / stripe / views / settings / form.php

form.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.35, at stripe/views/settings/form.php

26 lines 877 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5
6 FrmStrpLiteAppHelper::fee_education( 'stripe-global-settings-tip' );
7 ?>
8 <table class="form-table">
9 <tr class="form-field">
10 <td>
11 <?php esc_html_e( 'Test Mode', 'formidable' ); ?>
12 </td>
13 <td>
14 <label>
15 <input type="checkbox" name="frm_strp_test_mode" id="frm_strp_test_mode" value="1" <?php checked( $settings->settings->test_mode, 1 ); ?> />
16 <?php esc_html_e( 'Use the Stripe test mode', 'formidable' ); ?>
17 </label>
18 <?php if ( ! is_ssl() ) { ?>
19 <br/><em><?php esc_html_e( 'Your site is not using SSL. Before using Stripe to collect live payments, you will need to install an SSL certificate on your site.', 'formidable' ); ?></em>
20 <?php } ?>
21 </td>
22 </tr>
23
24 <?php FrmStrpLiteConnectHelper::render_stripe_connect_settings_container(); ?>
25 </table>
26