Metform Elementor Contact Form Builder – Flexible and Design-Friendly Contact Form builder plugin for WordPress - Version 3.0.1

Version Description

Metform 1.3.0-beta1 is a major update. We have reconstructed the widgets with react and huge optimization for future proof. If you faced any issue please contact our support team from here https://wpmet.com/support-ticket

Download this release

Release Info

Developer ataurr
Plugin Icon 128x128 Metform Elementor Contact Form Builder – Flexible and Design-Friendly Contact Form builder plugin for WordPress
Version 3.0.1
Comparing to
See all releases

Code changes from version 3.0.0 to 3.0.1

Files changed (4) hide show
  1. languages/metform.pot +2 -2
  2. metform.php +3 -3
  3. plugin.php +84 -84
  4. readme.txt +4 -1
languages/metform.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: MetForm 3.0.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/metform\n"
7
- "POT-Creation-Date: 2022-10-26 11:16:34+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
2
  # This file is distributed under the GPL-2.0+.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: MetForm 3.0.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/metform\n"
7
+ "POT-Creation-Date: 2022-10-27 11:46:12+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
metform.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: MetForm
4
  * Plugin URI: http://products.wpmet.com/metform/
5
  * Description: Most flexible and design friendly form builder for Elementor
6
- * Version: 3.0.0
7
  * Author: Wpmet
8
  * Author URI: https://wpmet.com
9
  * Text Domain: metform
@@ -18,7 +18,7 @@ require_once plugin_dir_path( __FILE__ ) . 'utils/notice/notice.php';
18
  require_once plugin_dir_path( __FILE__ ) . 'utils/banner/banner.php';
19
 
20
  require_once plugin_dir_path( __FILE__ ) . 'utils/stories/stories.php';
21
- require_once plugin_dir_path( __FILE__ ) . 'utils/pro-awareness/pro-awareness.php';
22
  require_once plugin_dir_path( __FILE__ ) . 'utils/rating/rating.php';
23
 
24
  require plugin_dir_path( __FILE__ ) .'autoloader.php';
@@ -27,7 +27,7 @@ require plugin_dir_path( __FILE__ ) .'plugin.php';
27
  // init notice class
28
  \Oxaim\Libs\Notice::init();
29
  // \Wpmet\Rating\Rating::init();
30
- \Wpmet\Libs\Pro_Awareness::init();
31
 
32
 
33
  register_activation_hook( __FILE__, [ MetForm\Plugin::instance(), 'flush_rewrites'] );
3
  * Plugin Name: MetForm
4
  * Plugin URI: http://products.wpmet.com/metform/
5
  * Description: Most flexible and design friendly form builder for Elementor
6
+ * Version: 3.0.1
7
  * Author: Wpmet
8
  * Author URI: https://wpmet.com
9
  * Text Domain: metform
18
  require_once plugin_dir_path( __FILE__ ) . 'utils/banner/banner.php';
19
 
20
  require_once plugin_dir_path( __FILE__ ) . 'utils/stories/stories.php';
21
+ // require_once plugin_dir_path( __FILE__ ) . 'utils/pro-awareness/pro-awareness.php';
22
  require_once plugin_dir_path( __FILE__ ) . 'utils/rating/rating.php';
23
 
24
  require plugin_dir_path( __FILE__ ) .'autoloader.php';
27
  // init notice class
28
  \Oxaim\Libs\Notice::init();
29
  // \Wpmet\Rating\Rating::init();
30
+ // \Wpmet\Libs\Pro_Awareness::init();
31
 
32
 
33
  register_activation_hook( __FILE__, [ MetForm\Plugin::instance(), 'flush_rewrites'] );
plugin.php CHANGED
@@ -22,7 +22,7 @@ final class Plugin {
22
 
23
  public function version()
24
  {
25
- return '3.0.0';
26
  }
27
 
28
  public function package_type()
@@ -162,91 +162,91 @@ final class Plugin {
162
  $is_pro_active = 'Go Premium';
163
  }
164
 
165
- \Wpmet\Libs\Pro_Awareness::instance('metform')
166
- ->set_parent_menu_slug('metform-menu')
167
- ->set_pro_link(
168
- (in_array('metform-pro/metform-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) ? '' :
169
- 'https://wpmet.com/metform-pricing'
170
- )
171
- ->set_plugin_file('metform/metform.php')
172
- ->set_default_grid_thumbnail($this->utils_url() . '/pro-awareness/assets/images/support.png')
173
- ->set_page_grid([
174
- 'url' => 'https://wpmet.com/fb-group',
175
- 'title' => 'Join the Community',
176
- 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/images/community.png',
177
- 'description' => 'Join our Facebook group to get 20% discount coupon on premium products. Follow us to get more exciting offers.'
178
-
179
- ])
180
- ->set_page_grid([
181
- 'url' => 'https://www.youtube.com/playlist?list=PL3t2OjZ6gY8NoB_48DwWKUDRtBEuBOxSc',
182
- 'title' => 'Video Tutorials',
183
- 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/images/videos.png',
184
- 'description' => 'Learn the step by step process for developing your site easily from video tutorials.'
185
- ])
186
- ->set_page_grid([
187
- 'url' => 'https://wpmet.com/plugin/metform/roadmaps#ideas',
188
- 'title' => 'Request a feature',
189
- 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/images/request.png',
190
- 'description' => 'Have any special feature in mind? Let us know through the feature request.'
191
- ])
192
- ->set_page_grid([
193
- 'url' => 'https://wpmet.com/doc/metform/',
194
- 'title' => 'Documentation',
195
- 'thumbnail' => $this->utils_url() . 'pro-awareness/assets/images/documentation.png',
196
- 'description' => 'Detailed documentation to help you understand the functionality of each feature.'
197
- ])
198
- ->set_page_grid([
199
- 'url' => 'https://wpmet.com/plugin/metform/roadmaps/',
200
- 'title' => 'Public Roadmap',
201
- 'thumbnail' => $this->utils_url() . 'pro-awareness/assets/images/roadmaps.png',
202
- 'description' => 'Check our upcoming new features, detailed development stories and tasks'
203
- ])
204
 
205
 
206
- // set wpmet products
207
- ->set_products([
208
- 'url' => 'https://getgenie.ai/',
209
- 'title' => 'GetGenie',
210
- 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/getgenie-logo.svg',
211
- 'description' => 'Your AI-Powered Content & SEO Assistant for WordPress',
212
- ])
213
- ->set_products([
214
- 'url' => 'https://wpmet.com/plugin/shopengine/',
215
- 'title' => 'ShopEngine',
216
- 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/shopengine-logo.svg',
217
- 'description' => 'Complete WooCommerce Solution for Elementor',
218
- ])
219
- ->set_products([
220
- 'url' => 'https://wpmet.com/plugin/metform/',
221
- 'title' => 'MetForm',
222
- 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/metform-logo.svg',
223
- 'description' => 'Most flexible drag-and-drop form builder'
224
- ])
225
- ->set_products([
226
- 'url' => 'https://wpmet.com/plugin/wp-social/',
227
- 'title' => 'WP Social',
228
- 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/wp-social-logo.svg',
229
- 'description' => 'Integrate all your social media to your website'
230
- ])
231
- ->set_products([
232
- 'url' => 'https://wpmet.com/plugin/wp-ultimate-review/?ref=wpmet',
233
- 'title' => 'Ultimate Review',
234
- 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/ultimate-review-logo.svg',
235
- 'description' => 'Integrate various styled review system in your website'
236
- ])
237
- ->set_products([
238
- 'url' => 'https://products.wpmet.com/crowdfunding/?ref=wpmet',
239
- 'title' => 'Fundraising & Donation Platform',
240
- 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/wp-fundraising-logo.svg',
241
- 'description' => 'Enable donation system in your website'
242
- ])
243
-
244
- ->set_plugin_row_meta('Documentation', 'https://help.wpmet.com/docs-cat/metform/', ['target' => '_blank'])
245
- ->set_plugin_row_meta('Facebook Community', 'https://wpmet.com/fb-group', ['target' => '_blank'])
246
- ->set_plugin_row_meta('Rate the plugin ★★★★★', 'https://wordpress.org/support/plugin/metform/reviews/#new-post', ['target' => '_blank'])
247
- ->set_plugin_action_link('Settings', admin_url() . 'admin.php?page=metform-menu-settings')
248
- ->set_plugin_action_link($is_pro_active, 'https://wpmet.com/plugin/metform', ['target' => '_blank', 'style' => 'color: #FCB214; font-weight: bold;'])
249
- ->call();
250
 
251
 
252
 
22
 
23
  public function version()
24
  {
25
+ return '3.0.1';
26
  }
27
 
28
  public function package_type()
162
  $is_pro_active = 'Go Premium';
163
  }
164
 
165
+ // \Wpmet\Libs\Pro_Awareness::instance('metform')
166
+ // ->set_parent_menu_slug('metform-menu')
167
+ // ->set_pro_link(
168
+ // (in_array('metform-pro/metform-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) ? '' :
169
+ // 'https://wpmet.com/metform-pricing'
170
+ // )
171
+ // ->set_plugin_file('metform/metform.php')
172
+ // ->set_default_grid_thumbnail($this->utils_url() . '/pro-awareness/assets/images/support.png')
173
+ // ->set_page_grid([
174
+ // 'url' => 'https://wpmet.com/fb-group',
175
+ // 'title' => 'Join the Community',
176
+ // 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/images/community.png',
177
+ // 'description' => 'Join our Facebook group to get 20% discount coupon on premium products. Follow us to get more exciting offers.'
178
+
179
+ // ])
180
+ // ->set_page_grid([
181
+ // 'url' => 'https://www.youtube.com/playlist?list=PL3t2OjZ6gY8NoB_48DwWKUDRtBEuBOxSc',
182
+ // 'title' => 'Video Tutorials',
183
+ // 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/images/videos.png',
184
+ // 'description' => 'Learn the step by step process for developing your site easily from video tutorials.'
185
+ // ])
186
+ // ->set_page_grid([
187
+ // 'url' => 'https://wpmet.com/plugin/metform/roadmaps#ideas',
188
+ // 'title' => 'Request a feature',
189
+ // 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/images/request.png',
190
+ // 'description' => 'Have any special feature in mind? Let us know through the feature request.'
191
+ // ])
192
+ // ->set_page_grid([
193
+ // 'url' => 'https://wpmet.com/doc/metform/',
194
+ // 'title' => 'Documentation',
195
+ // 'thumbnail' => $this->utils_url() . 'pro-awareness/assets/images/documentation.png',
196
+ // 'description' => 'Detailed documentation to help you understand the functionality of each feature.'
197
+ // ])
198
+ // ->set_page_grid([
199
+ // 'url' => 'https://wpmet.com/plugin/metform/roadmaps/',
200
+ // 'title' => 'Public Roadmap',
201
+ // 'thumbnail' => $this->utils_url() . 'pro-awareness/assets/images/roadmaps.png',
202
+ // 'description' => 'Check our upcoming new features, detailed development stories and tasks'
203
+ // ])
204
 
205
 
206
+ // // set wpmet products
207
+ // ->set_products([
208
+ // 'url' => 'https://getgenie.ai/',
209
+ // 'title' => 'GetGenie',
210
+ // 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/getgenie-logo.svg',
211
+ // 'description' => 'Your AI-Powered Content & SEO Assistant for WordPress',
212
+ // ])
213
+ // ->set_products([
214
+ // 'url' => 'https://wpmet.com/plugin/shopengine/',
215
+ // 'title' => 'ShopEngine',
216
+ // 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/shopengine-logo.svg',
217
+ // 'description' => 'Complete WooCommerce Solution for Elementor',
218
+ // ])
219
+ // ->set_products([
220
+ // 'url' => 'https://wpmet.com/plugin/metform/',
221
+ // 'title' => 'MetForm',
222
+ // 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/metform-logo.svg',
223
+ // 'description' => 'Most flexible drag-and-drop form builder'
224
+ // ])
225
+ // ->set_products([
226
+ // 'url' => 'https://wpmet.com/plugin/wp-social/',
227
+ // 'title' => 'WP Social',
228
+ // 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/wp-social-logo.svg',
229
+ // 'description' => 'Integrate all your social media to your website'
230
+ // ])
231
+ // ->set_products([
232
+ // 'url' => 'https://wpmet.com/plugin/wp-ultimate-review/?ref=wpmet',
233
+ // 'title' => 'Ultimate Review',
234
+ // 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/ultimate-review-logo.svg',
235
+ // 'description' => 'Integrate various styled review system in your website'
236
+ // ])
237
+ // ->set_products([
238
+ // 'url' => 'https://products.wpmet.com/crowdfunding/?ref=wpmet',
239
+ // 'title' => 'Fundraising & Donation Platform',
240
+ // 'thumbnail' => $this->core_url() . 'integrations/onboard/assets/images/products/wp-fundraising-logo.svg',
241
+ // 'description' => 'Enable donation system in your website'
242
+ // ])
243
+
244
+ // ->set_plugin_row_meta('Documentation', 'https://help.wpmet.com/docs-cat/metform/', ['target' => '_blank'])
245
+ // ->set_plugin_row_meta('Facebook Community', 'https://wpmet.com/fb-group', ['target' => '_blank'])
246
+ // ->set_plugin_row_meta('Rate the plugin ★★★★★', 'https://wordpress.org/support/plugin/metform/reviews/#new-post', ['target' => '_blank'])
247
+ // ->set_plugin_action_link('Settings', admin_url() . 'admin.php?page=metform-menu-settings')
248
+ // ->set_plugin_action_link($is_pro_active, 'https://wpmet.com/plugin/metform', ['target' => '_blank', 'style' => 'color: #FCB214; font-weight: bold;'])
249
+ // ->call();
250
 
251
 
252
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: ataurr, wpmet, emranio, aion11
3
  Tags: Form builder, contact form, Elementor contact form, contact form builder, elementor forms builder, drag and drop builder
4
  Requires at least: 4.8
5
  Tested up to: 6.0
6
- Stable tag: 3.0.0
7
  Requires PHP: 7.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -299,6 +299,9 @@ Connect with Gmail, Slack, Mailchimp, and many more. It helps to post Trello car
299
  **Migrations are coming soon in these forms. Contact Form 7, Caldera Forms, Ninja Forms, Gravity Forms, fluent forms, wp forms, Forminator & Formidable Form Builder, Everest Forms**
300
 
301
  == Changelog ==
 
 
 
302
  Version 3.0.0 // 2022-10-26
303
  Added: A new popup form creator in the admin dashboard for creating forms.
304
  Added: New form type select field was added to create different types of forms.
3
  Tags: Form builder, contact form, Elementor contact form, contact form builder, elementor forms builder, drag and drop builder
4
  Requires at least: 4.8
5
  Tested up to: 6.0
6
+ Stable tag: 3.0.1
7
  Requires PHP: 7.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
299
  **Migrations are coming soon in these forms. Contact Form 7, Caldera Forms, Ninja Forms, Gravity Forms, fluent forms, wp forms, Forminator & Formidable Form Builder, Everest Forms**
300
 
301
  == Changelog ==
302
+ Version 3.0.0 // 2022-10-26
303
+ Fixed: Fixed php method not found.
304
+
305
  Version 3.0.0 // 2022-10-26
306
  Added: A new popup form creator in the admin dashboard for creating forms.
307
  Added: New form type select field was added to create different types of forms.