body-default.php
8 years ago
default.php
4 years ago
field-default.php
8 years ago
footer-default.php
4 years ago
header-default.php
4 years ago
field-default.php
29 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Email form field entry. |
| 4 | * |
| 5 | * This is used with the {all_fields} smart tag. |
| 6 | * |
| 7 | * This template can be overridden by copying it to yourtheme/everest-forms/emails/field-default.php. |
| 8 | * |
| 9 | * HOWEVER, on occasion Everest Forms will need to update template files and you |
| 10 | * and you (the theme developer) will need to copy the new files to your theme to |
| 11 | * maintain compatibility. We try to do this as little as possible, but it does |
| 12 | * happen. When this occurs the version of the template file will be bumped and |
| 13 | * the readme will list any important changes. |
| 14 | * |
| 15 | * @see https://docs.wpeverest.com/docs/everest-forms/template-structure/ |
| 16 | * @package EverestForms/Templates |
| 17 | * @version 1.2.0 |
| 18 | */ |
| 19 | |
| 20 | defined( 'ABSPATH' ) || exit; |
| 21 | |
| 22 | ?> |
| 23 | <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="border-top:1px solid #dddddd; display:block;min-width: 100%;border-collapse: collapse;width:100%;"> |
| 24 | <tbody> |
| 25 | <tr><td style="color:#333333;padding-top: 20px;padding-bottom: 3px;"><strong>{field_name}</strong></td></tr> |
| 26 | <tr><td style="color:#555555;padding-top: 3px;padding-bottom: 20px;">{field_value}</td></tr> |
| 27 | </tbody> |
| 28 | </table> |
| 29 |