Version Description
- Checked compatibility with latest versions of WordPress and Elementor
- Fixed double shortcode boxed when this plugin is activated along with AnyWhere Elementor Pro (Pro version)
Download this release
Release Info
Developer | wpvibes |
Plugin | AnyWhere Elementor |
Version | 1.2.2 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.2.2
- anywhere-elementor.php +9 -6
- readme.txt +6 -2
anywhere-elementor.php
CHANGED
@@ -2,17 +2,17 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Anywhere Elementor
|
4 |
* Description: Allows you to insert elementor pages and library templates anywhere using shortcodes.
|
5 |
-
* Plugin URI:
|
6 |
* Author: WPVibes
|
7 |
-
* Version: 1.2.
|
8 |
-
* Author URI:
|
9 |
* Text Domain: wts_ae
|
10 |
*
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
14 |
|
15 |
-
define( 'AE_VERSION', '1.2.
|
16 |
|
17 |
define( 'WTS_AE__FILE__', __FILE__ );
|
18 |
define( 'WTS_AE_PLUGIN_BASE', plugin_basename( WTS_AE__FILE__ ) );
|
@@ -58,5 +58,8 @@ function add_ae_global_templates_columns( $column, $post_id ) {
|
|
58 |
break;
|
59 |
}
|
60 |
}
|
61 |
-
|
62 |
-
|
|
|
|
|
|
2 |
/**
|
3 |
* Plugin Name: Anywhere Elementor
|
4 |
* Description: Allows you to insert elementor pages and library templates anywhere using shortcodes.
|
5 |
+
* Plugin URI: https://www.elementoraddons.com/
|
6 |
* Author: WPVibes
|
7 |
+
* Version: 1.2.2
|
8 |
+
* Author URI: https://wpvibes.com/
|
9 |
* Text Domain: wts_ae
|
10 |
*
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
14 |
|
15 |
+
define( 'AE_VERSION', '1.2.2' );
|
16 |
|
17 |
define( 'WTS_AE__FILE__', __FILE__ );
|
18 |
define( 'WTS_AE_PLUGIN_BASE', plugin_basename( WTS_AE__FILE__ ) );
|
58 |
break;
|
59 |
}
|
60 |
}
|
61 |
+
|
62 |
+
if( !class_exists('Aepro\Aepro')){
|
63 |
+
add_filter( 'manage_ae_global_templates_posts_columns', 'set_custom_edit_ae_global_templates_posts_columns' );
|
64 |
+
add_action('manage_ae_global_templates_posts_custom_column', 'add_ae_global_templates_columns', 10, 2);
|
65 |
+
}
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== AnyWhere Elementor ===
|
2 |
-
Contributors: wpvibes,
|
3 |
Tags: page-builder, elementor
|
4 |
Requires at least: 4.4
|
5 |
-
Tested up to: 5.
|
6 |
Stable tag: 4.9
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -47,6 +47,10 @@ Note: This plugin is an addon of Elementor Page Builder (https://wordpress.org/p
|
|
47 |
|
48 |
== Changelog ==
|
49 |
|
|
|
|
|
|
|
|
|
50 |
= 1.2.1 =
|
51 |
* Added filter 'ae_multilingual_support' to manage support for WPML & Polylang compatibility.
|
52 |
|
1 |
=== AnyWhere Elementor ===
|
2 |
+
Contributors: wpvibes, anandau14, tejwanihemant
|
3 |
Tags: page-builder, elementor
|
4 |
Requires at least: 4.4
|
5 |
+
Tested up to: 5.4.2
|
6 |
Stable tag: 4.9
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.2.2 =
|
51 |
+
* Checked compatibility with latest versions of WordPress and Elementor
|
52 |
+
* Fixed double shortcode boxed when this plugin is activated along with AnyWhere Elementor Pro (Pro version)
|
53 |
+
|
54 |
= 1.2.1 =
|
55 |
* Added filter 'ae_multilingual_support' to manage support for WPML & Polylang compatibility.
|
56 |
|