PluginProbe ʕ •ᴥ•ʔ
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 3.5.2
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v3.5.2
3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.10 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.6.1 1.6.7 1.7.0 1.7.0.1 1.7.0.2 1.7.0.3 1.7.1 1.7.2 1.7.2.1 1.7.2.2 1.7.3 1.7.4 1.7.5 1.7.5.1 1.7.5.2 1.7.6 1.7.7 1.7.7.1 1.7.7.2 1.7.8 1.7.9 1.8.0 1.8.0.1 1.8.1 1.8.2 1.8.2.1 1.8.2.2 1.8.2.3 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.0.1 1.9.1 1.9.2 1.9.3 1.9.4 1.9.4.1 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.0.1 2.0.1 2.0.2 2.0.3 2.0.3.1 2.0.4 2.0.4.1 2.0.5 2.0.6 2.0.7 2.0.8 2.0.8.1 2.0.9 3.0.0 3.0.0.1 3.0.1 3.0.2 3.0.3 3.0.3.1 3.0.4 3.0.4.1 3.0.4.2 3.0.5 3.0.5.1 3.0.5.2 3.0.6 3.0.6.1 3.0.7.1 3.0.8 3.0.8.1 3.0.9 3.0.9.1 3.0.9.2 3.0.9.3 3.0.9.4 3.0.9.5 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.3.0 3.4.0 3.4.1 3.4.2 3.4.2.1 3.4.3 3.4.4 3.4.5 trunk 1.0 1.0.1 1.0.2 1.0.3
everest-forms / templates / notices / preview.php
everest-forms / templates / notices Last commit date
error.php 2 years ago notice.php 2 years ago preview.php 1 year ago success.php 1 year ago
preview.php
75 lines
1 <?php
2 /**
3 * Preview confirmation entry after form submission
4 *
5 * This template can be overridden by copying it to yourtheme/everest-forms/notices/notice.php.
6 *
7 * HOWEVER, on occasion Everest Forms will need to update template files and you
8 * and you (the theme developer) will need to copy the new files to your theme to
9 * maintain compatibility. We try to do this as little as possible, but it does
10 * happen. When this occurs the version of the template file will be bumped and
11 * the readme will list any important changes.
12 *
13 * @see https://docs.everestforms.net/
14 * @package EverestForms/Templates
15 * @version 1.0.0
16 */
17
18 defined( 'ABSPATH' ) || exit;
19
20 if ( $messages ) :
21 $allowed_tags = array(
22 'table' => array(
23 'border' => array(),
24 'cellpadding' => array(),
25 'cellspacing' => array(),
26 'style' => array(),
27 ),
28 'tr' => array(),
29 'td' => array(
30 'colspan' => array(),
31 'rowspan' => array(),
32 'style' => array(),
33 'class' => array(),
34 ),
35 'th' => array(
36 'colspan' => array(),
37 'rowspan' => array(),
38 'style' => array(),
39 'class' => array(),
40 ),
41 'a' => array(
42 'id' => true,
43 'href' => true,
44 'title' => true,
45 ),
46 'style' => array(
47 'type' => array(),
48 ),
49 'div' => array(
50 'id' => array(),
51 'class' => array(),
52 ),
53 'img' => array(
54 'src' => true,
55 'class' => array(),
56 'style' => array(
57 'type' => array(),
58 ),
59 ),
60 'br' => true,
61 'span' => array(
62 'class' => array(),
63 'style' => array(
64 'type' => array(),
65 ),
66 ),
67 );
68 foreach ( $messages as $message ) :
69 ?>
70 <div class="everest-forms-preview"><?php echo wp_kses( $message, $allowed_tags ); ?></div>
71
72 <?php endforeach; ?>
73
74 <?php endif; ?>
75