Version Description
- FIX: Prevent PHP notices in Elementor module
Download this release
Release Info
Developer | TemplateMonster 2002 |
Plugin | Cherry Team Members |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
cherry-team-members.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Cherry Team Members
|
4 |
* Plugin URI: http://www.templatemonster.com/wordpress-themes.php
|
5 |
* Description: Cherry Team Members plugin allows you to showcase your team and personnel.
|
6 |
-
* Version: 1.3.
|
7 |
* Author: TemplateMonster
|
8 |
* Author URI: http://www.templatemonster.com/
|
9 |
* Text Domain: cherry-team
|
@@ -45,7 +45,7 @@ if ( ! class_exists( 'Cherry_Team_Members' ) ) {
|
|
45 |
*
|
46 |
* @var string
|
47 |
*/
|
48 |
-
private $version = '1.3.
|
49 |
|
50 |
/**
|
51 |
* Plugin dir URL
|
3 |
* Plugin Name: Cherry Team Members
|
4 |
* Plugin URI: http://www.templatemonster.com/wordpress-themes.php
|
5 |
* Description: Cherry Team Members plugin allows you to showcase your team and personnel.
|
6 |
+
* Version: 1.3.1
|
7 |
* Author: TemplateMonster
|
8 |
* Author URI: http://www.templatemonster.com/
|
9 |
* Text Domain: cherry-team
|
45 |
*
|
46 |
* @var string
|
47 |
*/
|
48 |
+
private $version = '1.3.1';
|
49 |
|
50 |
/**
|
51 |
* Plugin dir URL
|
public/includes/ext/class-cherry-team-elementor-module.php
CHANGED
@@ -181,6 +181,10 @@ class Cherry_Team_Elementor_Widget extends Elementor\Widget_Base {
|
|
181 |
|
182 |
foreach ( $args as $name => $arg ) {
|
183 |
|
|
|
|
|
|
|
|
|
184 |
if ( ! is_array( $settings[ $name ] ) ) {
|
185 |
$val = $settings[ $name ];
|
186 |
} else {
|
181 |
|
182 |
foreach ( $args as $name => $arg ) {
|
183 |
|
184 |
+
if ( empty( $settings[ $name ] ) ) {
|
185 |
+
continue;
|
186 |
+
}
|
187 |
+
|
188 |
if ( ! is_array( $settings[ $name ] ) ) {
|
189 |
$val = $settings[ $name ];
|
190 |
} else {
|
readme.txt
CHANGED
@@ -4,11 +4,11 @@ Contributors: TemplateMonster 2002
|
|
4 |
Tags: custom post type, team, cherry-framework, elementor, elementor builder
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.7.4
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
-
Cherry Team Members plugin allows you to showcase your team and personnel.
|
12 |
|
13 |
== Description ==
|
14 |
|
@@ -81,6 +81,10 @@ Standard templates can be rewritten in the theme. For that you need to create ch
|
|
81 |
|
82 |
== Changelog ==
|
83 |
|
|
|
|
|
|
|
|
|
84 |
= 1.3.0 =
|
85 |
|
86 |
* ADD: Integrates as module into elementor builder.
|
4 |
Tags: custom post type, team, cherry-framework, elementor, elementor builder
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.7.4
|
7 |
+
Stable tag: 1.3.1
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
+
Cherry Team Members plugin allows you to showcase your team and personnel. Integrated with Elementor page builder.
|
12 |
|
13 |
== Description ==
|
14 |
|
81 |
|
82 |
== Changelog ==
|
83 |
|
84 |
+
= 1.3.1 =
|
85 |
+
|
86 |
+
* FIX: Prevent PHP notices in Elementor module
|
87 |
+
|
88 |
= 1.3.0 =
|
89 |
|
90 |
* ADD: Integrates as module into elementor builder.
|