Version Description
- 17-02-2021 = Fixed: PHP 5.6 compatibility issue.
Download this release
Release Info
Developer | Asif2BD |
Plugin | Templately – Templates Cloud for Elementor & Gutenberg : 2500+ Free & Premium Designs! |
Version | 1.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.2.0 to 1.2.1
- README.txt +8 -3
- core/api/class-api.php +2 -2
- templately.php +2 -2
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: templates, elementor, template-cloud, template, clouds, elementor template
|
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.2.
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -110,9 +110,13 @@ Yes, it will work with any standard WordPress theme.
|
|
110 |
4. Importing templates from MyCloud
|
111 |
5. MyCloud saved items
|
112 |
|
|
|
113 |
== Changelog ==
|
114 |
|
115 |
-
= 1.2.
|
|
|
|
|
|
|
116 |
|
117 |
Added: Download Button for Cloud Item, WorkSpace Item
|
118 |
Added: Grid View for Cloud Items, WorkSpace Items.
|
@@ -131,7 +135,7 @@ Tweaked: Minor changes in the Dashboard UI
|
|
131 |
Fixed: Missing insert icon for all blocks
|
132 |
Few minor bug fix and improvements
|
133 |
|
134 |
-
= 1.1.7 -
|
135 |
|
136 |
Added: Pretty URL in the Templately Dashboard for all items
|
137 |
Fixed: Search option for Workspace not working properly
|
@@ -253,4 +257,5 @@ Few minor bug fix and improvements
|
|
253 |
|
254 |
|
255 |
== Upgrade Notice ==
|
|
|
256 |
[Major Update] Must Update.
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.2.1
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
110 |
4. Importing templates from MyCloud
|
111 |
5. MyCloud saved items
|
112 |
|
113 |
+
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= 1.2.1 - 17-02-2021 =
|
117 |
+
Fixed: PHP 5.6 compatibility issue.
|
118 |
+
|
119 |
+
= 1.2.0 - 16-02-2021 =
|
120 |
|
121 |
Added: Download Button for Cloud Item, WorkSpace Item
|
122 |
Added: Grid View for Cloud Items, WorkSpace Items.
|
135 |
Fixed: Missing insert icon for all blocks
|
136 |
Few minor bug fix and improvements
|
137 |
|
138 |
+
= 1.1.7 - 04-01-2021 =
|
139 |
|
140 |
Added: Pretty URL in the Templately Dashboard for all items
|
141 |
Fixed: Search option for Workspace not working properly
|
257 |
|
258 |
|
259 |
== Upgrade Notice ==
|
260 |
+
|
261 |
[Major Update] Must Update.
|
core/api/class-api.php
CHANGED
@@ -472,7 +472,7 @@ class API {
|
|
472 |
$types,
|
473 |
$category_id !== false && $category_id !== 'all' ? "category_id: $category_id," : '',
|
474 |
$dependencies !== false ? "dependencies: $dependencies," : '',
|
475 |
-
! empty( $tag_id ) ? "tag_id: $tag_id" : ''
|
476 |
);
|
477 |
|
478 |
$data = Query::get( $query );
|
@@ -685,7 +685,7 @@ class API {
|
|
685 |
Helper::send_error( __( 'ID not found to push the item in cloud.', 'templately' ) );
|
686 |
}
|
687 |
$data = Query::getFromLibrary( $id );
|
688 |
-
|
689 |
if ( ! empty( $data ) && isset( $data['content'] ) ) {
|
690 |
$name = \get_the_title( $id );
|
691 |
$args['id'] = $id;
|
472 |
$types,
|
473 |
$category_id !== false && $category_id !== 'all' ? "category_id: $category_id," : '',
|
474 |
$dependencies !== false ? "dependencies: $dependencies," : '',
|
475 |
+
! empty( $tag_id ) ? "tag_id: $tag_id" : ''
|
476 |
);
|
477 |
|
478 |
$data = Query::get( $query );
|
685 |
Helper::send_error( __( 'ID not found to push the item in cloud.', 'templately' ) );
|
686 |
}
|
687 |
$data = Query::getFromLibrary( $id );
|
688 |
+
|
689 |
if ( ! empty( $data ) && isset( $data['content'] ) ) {
|
690 |
$name = \get_the_title( $id );
|
691 |
$args['id'] = $id;
|
templately.php
CHANGED
@@ -4,14 +4,14 @@
|
|
4 |
* Description: The Best Templates Cloud for Elementor & Gutenberg. Get access to stunning templates, WorkSpace, Cloud Library & many more.
|
5 |
* Plugin URI: https://templately.com
|
6 |
* Author: Templately
|
7 |
-
* Version: 1.2.
|
8 |
* Author URI: https://templately.com/
|
9 |
* Text Domain: templately
|
10 |
* Domain Path: /languages
|
11 |
*/
|
12 |
|
13 |
define('TEMPLATELY_FILE', __FILE__);
|
14 |
-
define('TEMPLATELY_VERSION', '1.2.
|
15 |
define('TEMPLATELY_PATH', plugin_dir_path(TEMPLATELY_FILE));
|
16 |
define('TEMPLATELY_URL', plugin_dir_url(TEMPLATELY_FILE));
|
17 |
define('TEMPLATELY_ASSETS', TEMPLATELY_URL . 'assets/');
|
4 |
* Description: The Best Templates Cloud for Elementor & Gutenberg. Get access to stunning templates, WorkSpace, Cloud Library & many more.
|
5 |
* Plugin URI: https://templately.com
|
6 |
* Author: Templately
|
7 |
+
* Version: 1.2.1
|
8 |
* Author URI: https://templately.com/
|
9 |
* Text Domain: templately
|
10 |
* Domain Path: /languages
|
11 |
*/
|
12 |
|
13 |
define('TEMPLATELY_FILE', __FILE__);
|
14 |
+
define('TEMPLATELY_VERSION', '1.2.1');
|
15 |
define('TEMPLATELY_PATH', plugin_dir_path(TEMPLATELY_FILE));
|
16 |
define('TEMPLATELY_URL', plugin_dir_url(TEMPLATELY_FILE));
|
17 |
define('TEMPLATELY_ASSETS', TEMPLATELY_URL . 'assets/');
|