Changeset 2940015
- Timestamp:
- 07/18/2023 05:41:42 PM (3 years ago)
- Location:
- ai-addons-for-elementor/trunk
- Files:
-
- 2 added
- 4 edited
-
ai-addons.php (modified) (1 diff)
-
includes/base/addon-base.php (modified) (1 diff)
-
includes/class.ai-post-elements.php (modified) (1 diff)
-
includes/widgets/ninja-form.php (added)
-
includes/widgets/wp-form.php (added)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ai-addons-for-elementor/trunk/ai-addons.php
r2938191 r2940015 4 4 Plugin URI: http://aiaddons.ai/ 5 5 Description: Discover the most advanced Elementor addons: AI featured widgets, Header & Footer builders, Mega menu builder, layout pack, drag and drop custom controls and potent custom controls. 6 Version: 1.4. 16 Version: 1.4.2 7 7 Author: AI WP 8 8 Author URI: https://profiles.wordpress.org/aiwp/ -
ai-addons-for-elementor/trunk/includes/base/addon-base.php
r2938131 r2940015 88 88 //Form Widgets 89 89 'contact-form-7' => [ 'url' => 'https://aiaddons.ai/contact-form-demo/', 'pro' => false, 'title' => esc_html__( 'Elementor Contact Form 7 Widget', 'ai-addons' ) ], 90 'ninja-form' => [ 'url' => 'https://aiaddons.ai/ninja-form-demo/', 'pro' => false, 'title' => esc_html__( 'Elementor Ninja Form Widget', 'ai-addons' ) ], 91 'wp-form' => [ 'url' => 'https://aiaddons.ai/wp-form-demo/', 'pro' => false, 'title' => esc_html__( 'Elementor WP Form Widget', 'ai-addons' ) ], 90 92 91 93 //Post Widget -
ai-addons-for-elementor/trunk/includes/class.ai-post-elements.php
r2913771 r2940015 35 35 global $wpdb; 36 36 $forms = array( '' => esc_html__( 'None', 'ai-addons' ) ); 37 $result = $wpdb->get_results( "SELECT id, title FROM ". $wpdb->prefix ."nf3_forms" ); 38 39 if( !empty( $result ) ){ 40 foreach( $result as $key ){ 41 $forms[$key->id] = $key->title; 37 if( class_exists( "Ninja_Forms" ) ){ 38 $result = $wpdb->get_results( "SELECT id, title FROM ". $wpdb->prefix ."nf3_forms" ); 39 40 if( !empty( $result ) ){ 41 foreach( $result as $key ){ 42 $forms[$key->id] = $key->title; 43 } 42 44 } 43 45 } 44 46 45 47 return $forms; 48 49 } 50 51 function get_wp_forms() { 52 53 static $forms_list = []; 54 55 if( function_exists( 'wpforms' ) && empty( $forms_list ) ) { 56 $forms = wpforms()->form->get(); 57 if ( ! empty( $forms ) ) { 58 $forms_list[0] = esc_html__( 'Select a form', 'ai-addons' ); 59 foreach ( $forms as $form ) { 60 $forms_list[ $form->ID ] = mb_strlen( $form->post_title ) > 100 ? mb_substr( $form->post_title, 0, 97 ) . '...' : $form->post_title; 61 } 62 } 63 } 64 65 return $forms_list; 46 66 47 67 } -
ai-addons-for-elementor/trunk/readme.txt
r2938191 r2940015 1 === AI Elementor Addons and Templates===1 === AI Elementor Addons === 2 2 Contributors: AI WP 3 3 Tags: elementor, elementor addons, elementor templates, elementor widgets, elementor elements … … 5 5 Tested up to: 6.2 6 6 Requires PHP: 5.7 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 10 11 AI Elementor Addons comes with 58+ elementor widgets and modules can be used to add content using OpenAI GPT, extra design elements, animation effects, sliders, and more to any Elementor page.11 AI Elementor Addons comes with 62+ elementor widgets and modules can be used to add content using OpenAI GPT, extra design elements, animation effects, sliders, and more to any Elementor page. 12 12 13 13 == Description == … … 15 15 ### THE #1 AI ELEMENTOR ADDONS 16 16 17 Introducing our exceptional lineup of over 58+ addons and widgets for [Elementor](https://wordpress.org/plugins/elementor/), the leading website builder. Created with a focus on empowering web designers and developers, our add-ons seamlessly integrate with Elementor, providing a vast array of dynamic features and functionalities. Elevate your website creation process with our meticulously crafted add-ons, offering an extensive.17 Introducing our exceptional lineup of over 62+ addons and widgets for [Elementor](https://wordpress.org/plugins/elementor/), the leading website builder. Created with a focus on empowering web designers and developers, our add-ons seamlessly integrate with Elementor, providing a vast array of dynamic features and functionalities. Elevate your website creation process with our meticulously crafted add-ons, offering an extensive. 18 18 19 19 The [AI Elementor Addons](https://aiaddons.ai/) are powerful tools that enhance the functionality and capabilities of the Elementor page builder plugin. These AI add-ons utilize artificial intelligence algorithms to provide advanced features, automation, and intelligent recommendations for creating stunning websites. These add-ons save time, enhance user experience, and provide valuable insights for optimizing your website's performance. … … 186 186 == Changelog == 187 187 188 = 1.4.2 - July 18, 2023 = 189 190 * Wp Form widget added 191 * Ninja form widget added 192 * Front-end styles updated 193 188 194 = 1.4.1 - July 13, 2023 = 189 195
Note: See TracChangeset
for help on using the changeset viewer.