Version Description
New Add-on: User Registration
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.7.62 |
Comparing to | |
See all releases |
Code changes from version 1.7.61 to 1.7.62
- assets/reg.png +0 -0
- featured/featured.php +7 -0
- form-maker.php +4 -4
- readme.txt +10 -7
assets/reg.png
ADDED
Binary file
|
featured/featured.php
CHANGED
@@ -195,6 +195,13 @@ function spider_extensions($current_plugin = '') {
|
|
195 |
'description' => 'This add-on is an integration of the Form Maker with MailChimp which allows to add contacts to your subscription lists just from submitted forms.',
|
196 |
'icon' => '',
|
197 |
'image' => plugins_url( '../assets/mailchimp.png', __FILE__ ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
)
|
199 |
)
|
200 |
);
|
195 |
'description' => 'This add-on is an integration of the Form Maker with MailChimp which allows to add contacts to your subscription lists just from submitted forms.',
|
196 |
'icon' => '',
|
197 |
'image' => plugins_url( '../assets/mailchimp.png', __FILE__ ),
|
198 |
+
),
|
199 |
+
'reg' => array(
|
200 |
+
'name' => 'Registration',
|
201 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/registration.html',
|
202 |
+
'description' => 'User Registration add-on integrates with Form maker forms allowing users to create accounts at your website.',
|
203 |
+
'icon' => '',
|
204 |
+
'image' => plugins_url( '../assets/reg.png', __FILE__ ),
|
205 |
)
|
206 |
)
|
207 |
);
|
form-maker.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Form Maker
|
4 |
-
* Plugin URI:
|
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.7.
|
7 |
* Author: WebDorado
|
8 |
-
* Author URI:
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
11 |
define('WD_FM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
@@ -14,6 +14,7 @@ define('WD_FM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
|
14 |
// Plugin menu.
|
15 |
function form_maker_options_panel() {
|
16 |
add_menu_page('Form Maker', 'Form Maker', 'manage_options', 'manage_fm', 'form_maker', WD_FM_URL . '/images/FormMakerLogo-16.png');
|
|
|
17 |
|
18 |
$manage_page = add_submenu_page('manage_fm', 'Manager', 'Manager', 'manage_options', 'manage_fm', 'form_maker');
|
19 |
add_action('admin_print_styles-' . $manage_page, 'form_maker_manage_styles');
|
@@ -35,7 +36,6 @@ function form_maker_options_panel() {
|
|
35 |
|
36 |
add_submenu_page('manage_fm', 'Featured Plugins', 'Featured Plugins', 'manage_options', 'featured_plugins_fm', 'fm_featured');
|
37 |
add_submenu_page('manage_fm', 'Featured Themes', 'Featured Themes', 'manage_options', 'featured_themes_fm', 'fm_featured_themes');
|
38 |
-
add_submenu_page('manage_fm', 'Form Maker Add-ons', 'Form Maker Add-ons', 'manage_options', 'extensions_fm', 'fm_extensions');
|
39 |
|
40 |
$uninstall_page = add_submenu_page('manage_fm', 'Uninstall', 'Uninstall', 'manage_options', 'uninstall_fm', 'form_maker');
|
41 |
add_action('admin_print_styles-' . $uninstall_page, 'form_maker_styles');
|
1 |
<?php
|
2 |
/**
|
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.7.62
|
7 |
* Author: WebDorado
|
8 |
+
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
11 |
define('WD_FM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
14 |
// Plugin menu.
|
15 |
function form_maker_options_panel() {
|
16 |
add_menu_page('Form Maker', 'Form Maker', 'manage_options', 'manage_fm', 'form_maker', WD_FM_URL . '/images/FormMakerLogo-16.png');
|
17 |
+
add_menu_page('Form Maker Add-ons', 'Form Maker Add-ons', 'manage_options', 'extensions_fm', 'fm_extensions');
|
18 |
|
19 |
$manage_page = add_submenu_page('manage_fm', 'Manager', 'Manager', 'manage_options', 'manage_fm', 'form_maker');
|
20 |
add_action('admin_print_styles-' . $manage_page, 'form_maker_manage_styles');
|
36 |
|
37 |
add_submenu_page('manage_fm', 'Featured Plugins', 'Featured Plugins', 'manage_options', 'featured_plugins_fm', 'fm_featured');
|
38 |
add_submenu_page('manage_fm', 'Featured Themes', 'Featured Themes', 'manage_options', 'featured_themes_fm', 'fm_featured_themes');
|
|
|
39 |
|
40 |
$uninstall_page = add_submenu_page('manage_fm', 'Uninstall', 'Uninstall', 'manage_options', 'uninstall_fm', 'form_maker');
|
41 |
add_action('admin_print_styles-' . $uninstall_page, 'form_maker_styles');
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Form Maker ===
|
2 |
Contributors: webdorado
|
3 |
-
Donate link:
|
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
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -16,11 +16,11 @@ Form Maker is a FREE and user-friendly plugin to create highly customizable and
|
|
16 |
|
17 |
https://www.youtube.com/watch?v=QelKxyW7M98
|
18 |
|
19 |
-
[WordPress Form Maker](
|
20 |
[Demo](http://wpdemo.web-dorado.com/)
|
21 |
[Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=Form_maker)
|
22 |
-
[User Manual](
|
23 |
-
[Frequently Asked Questions](
|
24 |
|
25 |
The Form Maker is one of the best responsive form builders in WordPress Plugin Directory. WordPress Form Builder allows you to set all the parameters such as colors, fonts and dimensions to best fit all form standards. If you want to make minimalistic forms, you can build forms with pre-filled texts, avoiding long form field labels. If want to build simple contact forms with unlimited number of fields, then you can use [WordPress Contact Form](http://wordpress.org/extend/plugins/contact-form-maker/).
|
26 |
|
@@ -47,7 +47,7 @@ Possibility of sending submitted form to various emails, providing them in Email
|
|
47 |
|
48 |
Survey tools are also very convenient for adding rating systems for the posts, e.g. for contests.
|
49 |
|
50 |
-
###IMPORTANT: If you think you found a bug in Form Maker or have any problem/question concerning the plugin, please check out [Support Forum](
|
51 |
|
52 |
|
53 |
|
@@ -123,7 +123,7 @@ Survey tools are also very convenient for adding rating systems for the posts, e
|
|
123 |
* Conditional fields, which can be used for hiding/displaying a list of questions based on the selection of specific answers.
|
124 |
* Option of displaying form pages using tabs or percentage.
|
125 |
|
126 |
-
Upgrade to [WordPress Form Maker Pro](
|
127 |
|
128 |
* unlimited number of form fields
|
129 |
* PayPal form field with currency change possibility
|
@@ -279,6 +279,9 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
|
|
279 |
|
280 |
== Changelog ==
|
281 |
|
|
|
|
|
|
|
282 |
= 1.7.61 =
|
283 |
New: Form Maker Add-ons page
|
284 |
|
1 |
=== Form Maker ===
|
2 |
Contributors: webdorado
|
3 |
+
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
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 1.7.62
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
16 |
|
17 |
https://www.youtube.com/watch?v=QelKxyW7M98
|
18 |
|
19 |
+
[WordPress Form Maker](https://web-dorado.com/products/wordpress-form.html)
|
20 |
[Demo](http://wpdemo.web-dorado.com/)
|
21 |
[Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=Form_maker)
|
22 |
+
[User Manual](https://web-dorado.com/wordpress-form-maker-guide-1.html)
|
23 |
+
[Frequently Asked Questions](https://web-dorado.com/forum/form-maker/316-form-maker-faq.html)
|
24 |
|
25 |
The Form Maker is one of the best responsive form builders in WordPress Plugin Directory. WordPress Form Builder allows you to set all the parameters such as colors, fonts and dimensions to best fit all form standards. If you want to make minimalistic forms, you can build forms with pre-filled texts, avoiding long form field labels. If want to build simple contact forms with unlimited number of fields, then you can use [WordPress Contact Form](http://wordpress.org/extend/plugins/contact-form-maker/).
|
26 |
|
47 |
|
48 |
Survey tools are also very convenient for adding rating systems for the posts, e.g. for contests.
|
49 |
|
50 |
+
###IMPORTANT: If you think you found a bug in Form Maker or have any problem/question concerning the plugin, please check out [Support Forum](https://web-dorado.com/forum/26-form-maker.html) in our website. If you do not find a solution here, do not hesitate to contact us at [info@web-dorado.com](mailto:info@web-dorado.com).
|
51 |
|
52 |
|
53 |
|
123 |
* Conditional fields, which can be used for hiding/displaying a list of questions based on the selection of specific answers.
|
124 |
* Option of displaying form pages using tabs or percentage.
|
125 |
|
126 |
+
Upgrade to [WordPress Form Maker Pro](https://web-dorado.com/products/wordpress-form.html) to add features:
|
127 |
|
128 |
* unlimited number of form fields
|
129 |
* PayPal form field with currency change possibility
|
279 |
|
280 |
== Changelog ==
|
281 |
|
282 |
+
= 1.7.62 =
|
283 |
+
New Add-on: User Registration
|
284 |
+
|
285 |
= 1.7.61 =
|
286 |
New: Form Maker Add-ons page
|
287 |
|