Skip to content

Commit

Permalink
Merge pull request #1 from eduardovillao/dev
Browse files Browse the repository at this point in the history
v1.3.6
  • Loading branch information
eduardovillao authored May 14, 2022
2 parents 835ee1d + 0c3eec4 commit 5bc3043
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 19 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,21 @@ Please, send to me: [[email protected]](mailto:[email protected])

## Changelog ==
```
= 1.3.1 =
= 1.3.6 =
* Changed: Compatibility with WordPress 6.0.
= 1.3.1 =
* Compatibility with WordPress 5.7.
= 1.3 =
* Fixed hide form after submit.
= 1.2 =
* Add support for break line with token %break%.
= 1.1 =
* Fix bug on phone number.
= 1.0 =
* Initial release.
```
10 changes: 5 additions & 5 deletions extensions-for-elementor-form.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Extensions for Elementor Form create many actions and controls to Elementor Form. This plugin require the Elementor Pro (Form Widget).
* Author: EduardoVillao.me
* Author URI: https://eduardovillao.me/
* Version: 1.3.5
* Version: 1.3.6
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
Expand All @@ -14,13 +14,13 @@
exit; // Exit if accessed directly
}

require dirname(__FILE__).'/init-whatsapp-action.php';
require dirname(__FILE__).'/includes/class-show-content-after-submit.php';
require_once dirname(__FILE__) . '/init-whatsapp-action.php';
require_once dirname(__FILE__) . '/includes/class-show-content-after-submit.php';

function ele_extensions_add_scripts () {

wp_enqueue_script( 'custom-js', plugin_dir_url( __FILE__ ) . 'assets/script.js', array( 'jquery' ), '1.3' );
wp_enqueue_style( 'custom-style', plugin_dir_url( __FILE__ ) . 'assets/style.css', array(), '1.3' );
wp_enqueue_script( 'custom-js', plugin_dir_url( __FILE__ ) . 'assets/script.js', array( 'jquery' ), '1.3.6' );
wp_enqueue_style( 'custom-style', plugin_dir_url( __FILE__ ) . 'assets/style.css', array(), '1.3.6' );
}

add_action( 'wp_enqueue_scripts', 'ele_extensions_add_scripts' );
Expand Down
16 changes: 7 additions & 9 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Contributors: EVCODE
Donate link: https://eduardovillao.me/
Tags: elementor, elementor form, elementor plugins, form
Requires at least: 4.9
Tested up to: 5.7
Stable tag: 1.3.5
Requires PHP: 5.6
Requires at least: 5.4
Tested up to: 6.0
Stable tag: 1.3.6
Requires PHP: 7.0
License: GPLv2License
URI:https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -55,22 +55,20 @@ Please, send to me: [[email protected]](mailto:[email protected])

== Changelog ==

= 1.3.1 =
= 1.3.6 =
* Changed: Compatibility with WordPress 6.0.

= 1.3.1 =
* Compatibility with WordPress 5.7.

= 1.3 =

* Fixed hide form after submit.

= 1.2 =

* Add support for break line with token %break%.

= 1.1 =

* Fix bug on phone number.

= 1.0 =

* Initial release.

0 comments on commit 5bc3043

Please sign in to comment.