PluginProbe
Smart Grid-Layout Design for Contact Form 7 / 4.5
Smart Grid-Layout Design for Contact Form 7 v4.5
4.18.0 4.17.0 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10 4.11 4.12 4.13 4.14 All 119 releases
cf7-grid-layout / admin / partials / pointers / cf7sg-pointer-editor-column-control.php

cf7sg-pointer-editor-column-control.php in Smart Grid-Layout Design for Contact Form 7 4.5, at admin/partials/pointers/cf7sg-pointer-editor-column-control.php

14 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 //column control.
3 global $post;
4 $is_form = get_post_meta($post->ID, '_cf7sg_managed_form', true);
5 if(empty($is_form) || !$is_form){ //check if new form debug_msg($post);
6 $is_form = false;
7 if('auto-draft'==$post->post_status) $is_form=true;
8 }
9 if($is_form):
10 ?>
11 <h3 class="cf7sg-pointer"><?=__('Column controls', 'cf7-grid-layout')?></h3>
12 <p><?=__('Use the column controls to split a row into multiple columns (<span class="dashicons dashicons-plus"></span>), delete a column (<span class="dashicons dashicons-trash"></span>), or move (<span class="dashicons dashicons-move"></span>) an existing column by dragging it within the same row. <br />Use this link (<span class="icon-code"></span>) to switch to the line of code in the text editor corresponsding to this column.<br />You can also edit a column (<span class="dashicons dashicons-edit"></span>) and <b>convert it into a grid section</b>. Column grid sections can have multiple rows and mulitple columns.<br />You can also convert a column into a form by inserting an existing sub-form. This is useful to design and maintain multiple large forms that have common fields.','cf7-grid-layout')?></p>
13 <?php endif; ?>
14