Skip to content

Commit 7d96ac3

Browse files
updated
1 parent 1be3b8e commit 7d96ac3

File tree

7 files changed

+17
-20
lines changed

7 files changed

+17
-20
lines changed

animation-addons-for-elementor.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
* Plugin Name: Animation Addons
44
* Description: Animation Addons for Elementor comes with GSAP Animation Builder, Customizable Widgets, Header Footer, Single Post, Archive Page Builder, and more.
55
* Plugin URI: https://animation-addons.com/
6-
* Version: 2.3.12
6+
* Version: 2.3.13
77
* Author: Wealcoder
88
* Author URI: https://animation-addons.com/
99
* License: GPL v2 or later
1010
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
1111
* Text Domain: animation-addons-for-elementor
1212
* Domain Path: /languages
13-
* Elementor tested up to: 3.31.1
14-
* Elementor Pro tested up to: 3.31.1
13+
* Elementor tested up to: 3.32.2
14+
* Elementor Pro tested up to: 3.32.2
1515
*/
1616

1717
if ( ! defined( 'ABSPATH' ) ) {
@@ -26,7 +26,7 @@
2626
/**
2727
* Plugin Version.
2828
*/
29-
define( 'WCF_ADDONS_VERSION', '2.3.12' );
29+
define( 'WCF_ADDONS_VERSION', '2.3.13' );
3030
}
3131
if ( ! defined( 'WCF_ADDONS_FILE' ) ) {
3232
/**
@@ -90,15 +90,15 @@ final class WCF_ADDONS_Plugin {
9090
* @since 1.0.0
9191
* @var string The plugin version.
9292
*/
93-
const VERSION = '2.3.10';
93+
const VERSION = '2.3.13';
9494

9595
/**
9696
* Minimum Elementor Version
9797
*
9898
* @since 1.0.0
9999
* @var string Minimum Elementor version required to run the plugin.
100100
*/
101-
const MINIMUM_ELEMENTOR_VERSION = '3.28.0';
101+
const MINIMUM_ELEMENTOR_VERSION = '3.29.0';
102102

103103
/**
104104
* Minimum PHP Version

assets/js/wcf-template-library.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -479,10 +479,8 @@
479479
if(jurl){
480480

481481
$.get({ url: "https://block.animation-addons.com/wp-json/wp/v2/wcf-templates/json-content?url="+jurl, crossDomain: true })
482-
.done(function (data) {
483-
console.log(data);
484-
if (data?.content) {
485-
482+
.done(function (data) {
483+
if (data?.content) {
486484
window.wcftmLibrary.currentRequest = elementorCommon.ajax.addRequest("get_wcf_template_data", {
487485
unique_id: template_id,
488486
data: {

assets/js/wcf-template-library.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/src/js/wcf-template-library.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -479,10 +479,8 @@
479479
if(jurl){
480480

481481
$.get({ url: "https://block.animation-addons.com/wp-json/wp/v2/wcf-templates/json-content?url="+jurl, crossDomain: true })
482-
.done(function (data) {
483-
console.log(data);
484-
if (data?.content) {
485-
482+
.done(function (data) {
483+
if (data?.content) {
486484
window.wcftmLibrary.currentRequest = elementorCommon.ajax.addRequest("get_wcf_template_data", {
487485
unique_id: template_id,
488486
data: {

inc/admin/template-importer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public function template_installer(){
249249

250250
public function update_blog_and_homepage_options($template_data){
251251

252-
if($template_data['home_page'] && $template_data['home_page'] !=''){
252+
if(isset($template_data['home_page']) && $template_data['home_page'] !=''){
253253
// Get the front page.
254254
$front_page = get_posts(
255255
[
@@ -267,7 +267,7 @@ public function update_blog_and_homepage_options($template_data){
267267
}
268268
}
269269

270-
if($template_data['blog_page'] && $template_data['blog_page'] !=''){
270+
if(isset($template_data['blog_page']) && $template_data['blog_page'] !=''){
271271
// Get the blog page.
272272
$blog_page = get_posts(
273273
[

inc/library-source.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ public function get_data( array $args, $context = 'display' ) {
8181
if ( empty( $data ) || empty( $data['content'] ) ) {
8282
throw new \Exception( esc_html__( 'Template does not have any content', 'animation-addons-for-elementor' ) );
8383
}
84+
add_filter('import_allow_fetch_attachments', '__return_false', 99);
8485
$data['content'] = $this->replace_elements_ids( $data['content'] );
8586
$data['content'] = $this->process_export_import_content( $data['content'], 'on_import' );
8687

readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: Elementor, Elementor Addons, Elementor Templates, Animation, Templates
55
Requires at least: 6.0
66
Tested up to: 6.8
77
Requires PHP: 7.4
8-
Stable tag: 2.3.12
8+
Stable tag: 2.3.13
99
License: GPL v2 or later
1010
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -429,9 +429,9 @@ See the unminified JS and CSS in our public repo: [GitHub Repository](https://gi
429429

430430
== Changelog ==
431431

432-
= Animation Addons for Elementor v2.3.13 – 22 September 2025 =
432+
= Animation Addons for Elementor v2.3.13 – 24 September 2025 =
433433

434-
- 🆕 Added: 660+ Pages in importer
434+
- 🆕 Added: 660+ Pages in Page importer
435435
- ✏️ Improved: Code Snippet design and functionality
436436
- ✏️ Improved: Section Import Library,
437437
- 🎨 Fixed: Native Sticky Header using smoother options

0 commit comments

Comments
 (0)