Version Description
- Added: Support forum and Review links.
Download this release
Release Info
Developer | webdorado |
Plugin | Contact Form Builder – a plugin for creating contact and feedback forms |
Version | 1.0.63 |
Comparing to | |
See all releases |
Code changes from version 1.0.62 to 1.0.63
- contact-form-builder.php +33 -5
- readme.txt +5 -1
contact-form-builder.php
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Contact Form Builder
|
4 |
-
* Plugin URI:
|
5 |
* Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: WebDorado
|
8 |
-
* Author URI:
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
11 |
define('WD_CFM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
12 |
define('WD_CFM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
13 |
-
define('WD_CFM_VERSION', '1.0.
|
14 |
define('WD_CFM_PREFIX', 'cfm');
|
15 |
define('WD_CFM_NICENAME', __( 'Contact Form Builder', WD_CFM_PREFIX ));
|
16 |
|
@@ -790,4 +790,32 @@ if ( !function_exists('wd_bps_install_notice_status') ) {
|
|
790 |
update_option('wd_bk_notice_status', '1', 'no');
|
791 |
}
|
792 |
add_action('wp_ajax_wd_bp_dismiss', 'wd_bps_install_notice_status');
|
793 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Contact Form Builder
|
4 |
+
* Plugin URI: https://web-dorado.com/products/wordpress-contact-form-builder.html
|
5 |
* Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
|
6 |
+
* Version: 1.0.63
|
7 |
* Author: WebDorado
|
8 |
+
* Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
11 |
define('WD_CFM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
12 |
define('WD_CFM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
13 |
+
define('WD_CFM_VERSION', '1.0.63');
|
14 |
define('WD_CFM_PREFIX', 'cfm');
|
15 |
define('WD_CFM_NICENAME', __( 'Contact Form Builder', WD_CFM_PREFIX ));
|
16 |
|
790 |
update_option('wd_bk_notice_status', '1', 'no');
|
791 |
}
|
792 |
add_action('wp_ajax_wd_bp_dismiss', 'wd_bps_install_notice_status');
|
793 |
+
}
|
794 |
+
|
795 |
+
function cfm_add_plugin_meta_links($meta_fields, $file) {
|
796 |
+
if ( plugin_basename(__FILE__) == $file ) {
|
797 |
+
$plugin_url = "https://wordpress.org/support/plugin/contact-form-builder";
|
798 |
+
$prefix = WD_CFM_PREFIX;
|
799 |
+
$meta_fields[] = "<a href='" . $plugin_url . "' target='_blank'>" . __('Support Forum', $prefix) . "</a>";
|
800 |
+
$meta_fields[] = "<a href='" . $plugin_url . "/reviews#new-post' target='_blank' title='" . __('Rate', $prefix) . "'>
|
801 |
+
<i class='wdi-rate-stars'>"
|
802 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
803 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
804 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
805 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
806 |
+
. "<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg>"
|
807 |
+
. "</i></a>";
|
808 |
+
|
809 |
+
$stars_color = "#ffb900";
|
810 |
+
|
811 |
+
echo "<style>"
|
812 |
+
. ".wdi-rate-stars{display:inline-block;color:" . $stars_color . ";position:relative;top:3px;}"
|
813 |
+
. ".wdi-rate-stars svg{fill:" . $stars_color . ";}"
|
814 |
+
. ".wdi-rate-stars svg:hover{fill:" . $stars_color . "}"
|
815 |
+
. ".wdi-rate-stars svg:hover ~ svg{fill:none;}"
|
816 |
+
. "</style>";
|
817 |
+
}
|
818 |
+
|
819 |
+
return $meta_fields;
|
820 |
+
}
|
821 |
+
add_filter("plugin_row_meta", 'cfm_add_plugin_meta_links', 10, 2);
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
|
4 |
Tags: contact form, contact forms, contact, feedback, form manager, captcha, custom form, email, form, form builder, forms, survey
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -13,6 +13,7 @@ Contact Form Builder is an intuitive tool for creating responsive contact forms
|
|
13 |
== Description ==
|
14 |
Create responsive FREE contact forms with multiple templates and themes.
|
15 |
|
|
|
16 |
[WordPress Contact Form Builder](http://web-dorado.com/products/wordpress-contact-form-builder.html)
|
17 |
[Demo](http://wpdemo.web-dorado.com/contact-form-builder/)
|
18 |
[Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=manage_cfm)
|
@@ -138,6 +139,9 @@ After downloading the ZIP file,
|
|
138 |
|
139 |
== Changelog ==
|
140 |
|
|
|
|
|
|
|
141 |
= 1.0.62 =
|
142 |
* Changed: Show notification to install Backup WD plugin only on plugin pages.
|
143 |
|
4 |
Tags: contact form, contact forms, contact, feedback, form manager, captcha, custom form, email, form, form builder, forms, survey
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 1.0.63
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
13 |
== Description ==
|
14 |
Create responsive FREE contact forms with multiple templates and themes.
|
15 |
|
16 |
+
[Special Offer for all Premium Plugins](https://web-dorado.com/wordpress-plugins-bundle.html)
|
17 |
[WordPress Contact Form Builder](http://web-dorado.com/products/wordpress-contact-form-builder.html)
|
18 |
[Demo](http://wpdemo.web-dorado.com/contact-form-builder/)
|
19 |
[Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=manage_cfm)
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 1.0.63 =
|
143 |
+
* Added: Support forum and Review links.
|
144 |
+
|
145 |
= 1.0.62 =
|
146 |
* Changed: Show notification to install Backup WD plugin only on plugin pages.
|
147 |
|