Version Description
New Add-on: Stripe Integration
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.8.11 |
Comparing to | |
See all releases |
Code changes from version 1.8.10 to 1.8.11
- admin/views/FMViewManage_fm.php +5 -68
- assets/stripe-integration-update.png +0 -0
- featured/featured.php +7 -0
- form-maker.php +2 -2
- images/paypal.png +0 -0
- readme.txt +6 -2
admin/views/FMViewManage_fm.php
CHANGED
@@ -581,7 +581,7 @@ class FMViewManage_fm {
|
|
581 |
</td>
|
582 |
<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" id="table_paypal" class="field_buttons field_disabled">
|
583 |
<img src="<?php echo WD_FM_URL; ?>/images/paypal.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_paypal">
|
584 |
-
<div>
|
585 |
</td>
|
586 |
</tr>
|
587 |
<tr>
|
@@ -3726,76 +3726,13 @@ class FMViewManage_fm {
|
|
3726 |
<div class="error_fm" style="padding: 5px; font-size: 14px;">Paypal Options are disabled in free version.</div>
|
3727 |
</td>
|
3728 |
</tr>
|
3729 |
-
|
3730 |
-
<td class="fm_options_label">
|
3731 |
-
<label>Turn Paypal On</label>
|
3732 |
-
</td>
|
3733 |
-
<td class="fm_options_value">
|
3734 |
-
<button name="paypal_mode" class="fm-checkbox-radio-button <?php echo $row->paypal_mode == 1 ? 'fm-text-yes' : 'fm-text-no' ?> small" onclick="fm_change_radio_checkbox_text(this); return false;" value="<?php echo $row->paypal_mode == 1 ? '1' : '0' ?>" disabled="disabled">
|
3735 |
-
<label><?php echo $row->paypal_mode == 1 ? 'On' : 'Off' ?></label>
|
3736 |
-
<span></span>
|
3737 |
-
</button>
|
3738 |
-
<input type="hidden" name="paypal_mode" value="<?php echo $row->paypal_mode; ?>"/>
|
3739 |
-
</td>
|
3740 |
-
</tr>
|
3741 |
-
<tr valign="top">
|
3742 |
-
<td class="fm_options_label">
|
3743 |
-
<label>Checkout Mode</label>
|
3744 |
-
</td>
|
3745 |
-
<td class="fm_options_value">
|
3746 |
-
<button name="checkout_mode" class="fm-checkbox-radio-button <?php echo $row->checkout_mode == 1 ? 'fm-text-yes' : 'fm-text-no' ?> large" onclick="fm_change_radio_checkbox_text(this); return false;" value="<?php echo $row->checkout_mode == 1 ? '1' : '0' ?>" disabled="disabled">
|
3747 |
-
<label><?php echo $row->checkout_mode == 1 ? 'Production' : 'Testmode' ?></label>
|
3748 |
-
<span></span>
|
3749 |
-
</button>
|
3750 |
-
<input type="hidden" name="checkout_mode" value="<?php echo $row->checkout_mode; ?>"/>
|
3751 |
-
</td>
|
3752 |
-
</tr>
|
3753 |
-
<tr valign="top">
|
3754 |
-
<td class="fm_options_label">
|
3755 |
-
<label for="paypal_email">Paypal email</label>
|
3756 |
-
</td>
|
3757 |
-
<td class="fm_options_value">
|
3758 |
-
<input type="text" name="paypal_email" id="paypal_email" value="<?php echo $row->paypal_email; ?>" class="text_area" style="width:250px" disabled="disabled">
|
3759 |
-
</td>
|
3760 |
-
</tr>
|
3761 |
-
<tr valign="top">
|
3762 |
-
<td class="fm_options_label">
|
3763 |
-
<label for="payment_currency">Payment Currency</label>
|
3764 |
-
</td>
|
3765 |
-
<td class="fm_options_value">
|
3766 |
-
<select id="payment_currency" name="payment_currency" disabled="disabled">
|
3767 |
-
<option value="USD" <?php echo (($row->payment_currency == 'USD') ? 'selected' : ''); ?>>$ • U.S. Dollar</option>
|
3768 |
-
<option value="EUR" <?php echo (($row->payment_currency == 'EUR') ? 'selected' : ''); ?>>€ • Euro</option>
|
3769 |
-
<option value="GBP" <?php echo (($row->payment_currency == 'GBP') ? 'selected' : ''); ?>>£ • Pound Sterling</option>
|
3770 |
-
<option value="JPY" <?php echo (($row->payment_currency == 'JPY') ? 'selected' : ''); ?>>¥ • Japanese Yen</option>
|
3771 |
-
<option value="CAD" <?php echo (($row->payment_currency == 'CAD') ? 'selected' : ''); ?>>C$ • Canadian Dollar</option>
|
3772 |
-
<option value="MXN" <?php echo (($row->payment_currency == 'MXN') ? 'selected' : ''); ?>>Mex$ • Mexican Peso</option>
|
3773 |
-
<option value="HKD" <?php echo (($row->payment_currency == 'HKD') ? 'selected' : ''); ?>>HK$ • Hong Kong Dollar</option>
|
3774 |
-
<option value="HUF" <?php echo (($row->payment_currency == 'HUF') ? 'selected' : ''); ?>>Ft • Hungarian Forint</option>
|
3775 |
-
<option value="NOK" <?php echo (($row->payment_currency == 'NOK') ? 'selected' : ''); ?>>kr • Norwegian Kroner</option>
|
3776 |
-
<option value="NZD" <?php echo (($row->payment_currency == 'NZD') ? 'selected' : ''); ?>>NZ$ • New Zealand Dollar</option>
|
3777 |
-
<option value="SGD" <?php echo (($row->payment_currency == 'SGD') ? 'selected' : ''); ?>>S$ • Singapore Dollar</option>
|
3778 |
-
<option value="SEK" <?php echo (($row->payment_currency == 'SEK') ? 'selected' : ''); ?>>kr • Swedish Kronor</option>
|
3779 |
-
<option value="PLN" <?php echo (($row->payment_currency == 'PLN') ? 'selected' : ''); ?>>zl • Polish Zloty</option>
|
3780 |
-
<option value="AUD" <?php echo (($row->payment_currency == 'AUD') ? 'selected' : ''); ?>>A$ • Australian Dollar</option>
|
3781 |
-
<option value="DKK" <?php echo (($row->payment_currency == 'DKK') ? 'selected' : ''); ?>>kr • Danish Kroner</option>
|
3782 |
-
<option value="CHF" <?php echo (($row->payment_currency == 'CHF') ? 'selected' : ''); ?>>CHF • Swiss Francs</option>
|
3783 |
-
<option value="CZK" <?php echo (($row->payment_currency == 'CZK') ? 'selected' : ''); ?>>Kc • Czech Koruny</option>
|
3784 |
-
<option value="ILS" <?php echo (($row->payment_currency == 'ILS') ? 'selected' : ''); ?>>₪ • Israeli Sheqel</option>
|
3785 |
-
<option value="BRL" <?php echo (($row->payment_currency == 'BRL') ? 'selected' : ''); ?>>R$ • Brazilian Real</option>
|
3786 |
-
<option value="TWD" <?php echo (($row->payment_currency == 'TWD') ? 'selected' : ''); ?>>NT$ • Taiwan New Dollars</option>
|
3787 |
-
<option value="MYR" <?php echo (($row->payment_currency == 'MYR') ? 'selected' : ''); ?>>RM • Malaysian Ringgit</option>
|
3788 |
-
<option value="PHP" <?php echo (($row->payment_currency == 'PHP') ? 'selected' : ''); ?>>₱ • Philippine Peso</option>
|
3789 |
-
<option value="THB" <?php echo (($row->payment_currency == 'THB') ? 'selected' : ''); ?>>฿ • Thai Bahtv</option>
|
3790 |
-
</select>
|
3791 |
-
</td>
|
3792 |
-
</tr>
|
3793 |
-
<tr valign="top">
|
3794 |
<td class="fm_options_label">
|
3795 |
-
<label
|
3796 |
</td>
|
3797 |
<td class="fm_options_value">
|
3798 |
-
<input type="
|
|
|
3799 |
</td>
|
3800 |
</tr>
|
3801 |
</table>
|
581 |
</td>
|
582 |
<td align="center" onclick="alert('This field type is disabled in free version. If you need this functionality, you need to buy the commercial version.')" id="table_paypal" class="field_buttons field_disabled">
|
583 |
<img src="<?php echo WD_FM_URL; ?>/images/paypal.png?ver=<?php echo get_option("wd_form_maker_version"); ?>" style="margin:5px" id="img_paypal">
|
584 |
+
<div>Payment</div>
|
585 |
</td>
|
586 |
</tr>
|
587 |
<tr>
|
3726 |
<div class="error_fm" style="padding: 5px; font-size: 14px;">Paypal Options are disabled in free version.</div>
|
3727 |
</td>
|
3728 |
</tr>
|
3729 |
+
<tr valign="top">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3730 |
<td class="fm_options_label">
|
3731 |
+
<label>Payment Method</label>
|
3732 |
</td>
|
3733 |
<td class="fm_options_value">
|
3734 |
+
<div><input type="radio" name="paypal_mode" id="paypal_mode0" value="none" checked="checked" onchange="fm_change_payment_method('none');" disabled="disabled" /><label for="paypal_mode0">None</label></div>
|
3735 |
+
<div><input type="radio" name="paypal_mode" id="paypal_mode1" value="paypal" onchange="fm_change_payment_method('paypal');" disabled="disabled" /><label for="paypal_mode1">Paypal</label></div>
|
3736 |
</td>
|
3737 |
</tr>
|
3738 |
</table>
|
assets/stripe-integration-update.png
ADDED
Binary file
|
featured/featured.php
CHANGED
@@ -261,6 +261,13 @@ function fm_extensions_page($current_plugin = '') {
|
|
261 |
'description' => 'The add-on allows to save filled in forms as draft and continue editing them subsequently.',
|
262 |
'icon' => '',
|
263 |
'image' => plugins_url( '../assets/save-progress.png', __FILE__ ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
)
|
265 |
)
|
266 |
);
|
261 |
'description' => 'The add-on allows to save filled in forms as draft and continue editing them subsequently.',
|
262 |
'icon' => '',
|
263 |
'image' => plugins_url( '../assets/save-progress.png', __FILE__ ),
|
264 |
+
),
|
265 |
+
'stripe' => array(
|
266 |
+
'name' => 'Stripe',
|
267 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/stripe.html',
|
268 |
+
'description' => 'Form Maker Stripe Integration Add-on allows to accept direct payments made by Credit Cards. Users will remain on your website during the entire process.',
|
269 |
+
'icon' => '',
|
270 |
+
'image' => plugins_url( '../assets/stripe-integration-update.png', __FILE__ ),
|
271 |
)
|
272 |
)
|
273 |
);
|
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.11
|
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.11';
|
273 |
global $wpdb;
|
274 |
if (!$version) {
|
275 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
images/paypal.png
CHANGED
Binary file
|
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 |
|
@@ -24,7 +24,8 @@ Form Maker is a FREE and user-friendly plugin to create highly customizable and
|
|
24 |
|
25 |
= Form Maker Add-ons: =
|
26 |
[Import/Export Add-on](https://web-dorado.com/products/wordpress-form/add-ons/export-import.html)
|
27 |
-
[Save Progress Add-on](https://web-dorado.com/products/wordpress-form/add-ons/save-progress.html)
|
|
|
28 |
[Google PDF Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/pdf.html)
|
29 |
[Mailchimp Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/mailchimp.html)
|
30 |
[User Registration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/registration.html)
|
@@ -301,6 +302,9 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
|
|
301 |
|
302 |
== Changelog ==
|
303 |
|
|
|
|
|
|
|
304 |
= 1.8.10 =
|
305 |
Fixed: Bug in name field
|
306 |
Fixed: Bug in captcha
|
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.11
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
24 |
|
25 |
= Form Maker Add-ons: =
|
26 |
[Import/Export Add-on](https://web-dorado.com/products/wordpress-form/add-ons/export-import.html)
|
27 |
+
[Save Progress Add-on](https://web-dorado.com/products/wordpress-form/add-ons/save-progress.html)
|
28 |
+
[Stripe Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/stripe.html)
|
29 |
[Google PDF Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/pdf.html)
|
30 |
[Mailchimp Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/mailchimp.html)
|
31 |
[User Registration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/registration.html)
|
302 |
|
303 |
== Changelog ==
|
304 |
|
305 |
+
= 1.8.11 =
|
306 |
+
New Add-on: Stripe Integration
|
307 |
+
|
308 |
= 1.8.10 =
|
309 |
Fixed: Bug in name field
|
310 |
Fixed: Bug in captcha
|