| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<p class="frm_grid_container"> |
| 7 |
<label class="frm4 frm_form_field" for="frm_strp_processing_message"> |
| 8 |
<?php esc_html_e( 'Stripe Processing Message', 'formidable' ); ?> |
| 9 |
<?php FrmAppHelper::tooltip_icon( __( 'The text used to notify users that a Stripe payment is still processing and will not be finalized for several days.', 'formidable' ) ); ?> |
| 10 |
</label> |
| 11 |
<input type="text" id="frm_strp_processing_message" name="frm_strp_processing_message" class="frm8 frm_form_field" value="<?php echo esc_attr( $stripe_settings->processing_message ); ?>" /> |
| 12 |
</p> |
| 13 |
|