Version Description
Changed: Submissions page styles
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.8.12 |
Comparing to | |
See all releases |
Code changes from version 1.8.11 to 1.8.12
- admin/views/FMViewSubmissions_fm.php +10 -4
- css/form_maker_tables.css +6 -4
- form-maker.php +2 -2
- readme.txt +4 -1
admin/views/FMViewSubmissions_fm.php
CHANGED
@@ -340,14 +340,20 @@ class FMViewSubmissions_fm {
|
|
340 |
</div>
|
341 |
<div class="tablenav top">
|
342 |
<div class="fm-filters">
|
343 |
-
<div class="fm-search-tools">
|
344 |
<input type="hidden" name="hide_label_list" value="<?php echo $lists['hide_label_list']; ?>">
|
345 |
-
<button class="fm-
|
346 |
<span></span>
|
|
|
|
|
347 |
</button>
|
348 |
-
<button class="fm-
|
|
|
|
|
349 |
</button>
|
350 |
-
<button class="fm-
|
|
|
|
|
351 |
</button>
|
352 |
</div>
|
353 |
<div class="fm-add-remove">
|
340 |
</div>
|
341 |
<div class="tablenav top">
|
342 |
<div class="fm-filters">
|
343 |
+
<div class="fm-search-tools fm-page-actions" style="float:none;">
|
344 |
<input type="hidden" name="hide_label_list" value="<?php echo $lists['hide_label_list']; ?>">
|
345 |
+
<button class="fm-button show-filter-button medium" onclick="show_hide_filter(); return false;" title="Show Filters">
|
346 |
<span></span>
|
347 |
+
Show Filters
|
348 |
+
|
349 |
</button>
|
350 |
+
<button class="fm-button search-button small" onclick="fm_form_submit(event, 'admin_form'); return false;" title="Search">
|
351 |
+
<span></span>
|
352 |
+
Search
|
353 |
</button>
|
354 |
+
<button class="fm-button reset-button small" onclick="remove_all(); fm_form_submit(event, 'admin_form'); return false;" title="Reset">
|
355 |
+
<span></span>
|
356 |
+
Reset
|
357 |
</button>
|
358 |
</div>
|
359 |
<div class="fm-add-remove">
|
css/form_maker_tables.css
CHANGED
@@ -811,11 +811,13 @@ button:focus {
|
|
811 |
vertical-align: middle;
|
812 |
}
|
813 |
|
814 |
-
.fm-icon.search-icon
|
|
|
815 |
background: #DDCC7F url("../images/buttons.png") no-repeat 55% 57%;
|
816 |
}
|
817 |
|
818 |
-
.fm-icon.reset-icon
|
|
|
819 |
background: #C1C1C1 url("../images/buttons.png") no-repeat 37.5% 57%;
|
820 |
}
|
821 |
|
@@ -827,8 +829,8 @@ button:focus {
|
|
827 |
background: #E5705D url("../images/buttons.png") no-repeat 27.5% 71%;
|
828 |
}
|
829 |
|
830 |
-
.fm-
|
831 |
-
background: #DDCC7F url("../images/buttons.png") no-repeat
|
832 |
}
|
833 |
|
834 |
.fm-icon.add-block-ip-icon{
|
811 |
vertical-align: middle;
|
812 |
}
|
813 |
|
814 |
+
.fm-icon.search-icon,
|
815 |
+
.fm-button.search-button span{
|
816 |
background: #DDCC7F url("../images/buttons.png") no-repeat 55% 57%;
|
817 |
}
|
818 |
|
819 |
+
.fm-icon.reset-icon,
|
820 |
+
.fm-button.reset-button span{
|
821 |
background: #C1C1C1 url("../images/buttons.png") no-repeat 37.5% 57%;
|
822 |
}
|
823 |
|
829 |
background: #E5705D url("../images/buttons.png") no-repeat 27.5% 71%;
|
830 |
}
|
831 |
|
832 |
+
.fm-button.show-filter-button span{
|
833 |
+
background: #DDCC7F url("../images/buttons.png") no-repeat 61% 18%;
|
834 |
}
|
835 |
|
836 |
.fm-icon.add-block-ip-icon{
|
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
-
* Version: 1.8.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -269,7 +269,7 @@ function register_fmemailverification_cpt(){
|
|
269 |
// Activate plugin.
|
270 |
function form_maker_activate() {
|
271 |
$version = get_option("wd_form_maker_version");
|
272 |
-
$new_version = '1.8.
|
273 |
global $wpdb;
|
274 |
if (!$version) {
|
275 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
+
* Version: 1.8.12
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
269 |
// Activate plugin.
|
270 |
function form_maker_activate() {
|
271 |
$version = get_option("wd_form_maker_version");
|
272 |
+
$new_version = '1.8.12';
|
273 |
global $wpdb;
|
274 |
if (!$version) {
|
275 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-form.html
|
|
4 |
Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -302,6 +302,9 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
|
|
302 |
|
303 |
== Changelog ==
|
304 |
|
|
|
|
|
|
|
305 |
= 1.8.11 =
|
306 |
New Add-on: Stripe Integration
|
307 |
|
4 |
Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.8.12
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
302 |
|
303 |
== Changelog ==
|
304 |
|
305 |
+
= 1.8.12 =
|
306 |
+
Changed: Submissions page styles
|
307 |
+
|
308 |
= 1.8.11 =
|
309 |
New Add-on: Stripe Integration
|
310 |
|