PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.0.0-beta.3
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.0.0-beta.3
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / includes / admin / views / display-settings.php

display-settings.php in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.0.0-beta.3, at includes/admin/views/display-settings.php

27 lines 906 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <table class="form-table">
2
3 <tr class="wpuf-label-position">
4 <th><?php _e( 'Label Position', 'weforms' ); ?></th>
5 <td>
6 <select v-model="settings.label_position">
7 <?php
8 $positions = array(
9 'above' => __( 'Above Element', 'weforms' ),
10 'left' => __( 'Left of Element', 'weforms' ),
11 'right' => __( 'Right of Element', 'weforms' ),
12 'hidden' => __( 'Hidden', 'weforms' ),
13 );
14
15 foreach ($positions as $to => $label) {
16 printf('<option value="%s"%s>%s</option>', $to, '', $label );
17 }
18 ?>
19 </select>
20
21 <p class="description">
22 <?php _e( 'Where the labels of the form should display', 'weforms' ) ?>
23 </p>
24 </td>
25 </tr>
26 </table>
27