Plugin Directory

Changeset 2990981


Ignore:
Timestamp:
11/07/2023 04:30:54 PM (2 years ago)
Author:
Shamimmiashuhagh
Message:

Release plugin version 2.2.19

Location:
team-free
Files:
264 added
5 edited

Legend:

Unmodified
Added
Removed
  • team-free/trunk/readme.txt

    r2949061 r2990981  
    33Tags: team, wp team, team members, team showcase, team members showcase, our team members, our team, best team member plugin, wordpress team showcase plugin, meet the team, our stuff, responsive team plugin,  wordpress team, team carousel, team slider,  team grid, team list, team mosaic, team inline, team member filter, staff, workers, team profile, staff showcase, crew, squad, employees, modal, hexagonal grid, thumbnail pager, gallery, team gallery, people, company, organization
    44Requires at least: 4.7
    5 Tested up to: 6.3
    6 Stable tag: 2.2.18
     5Tested up to: 6.4
     6Stable tag: 2.2.19
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    276276== Changelog ==
    277277
     278= 2.2.19 - Nov 07, 2023 =
     279* Fix: Few PHPCS warnings found with PHP8.2.
     280* Tested: WordPress 6.4 compatibility.
     281
    278282= 2.2.18 - Aug 08, 2023 =
    279283* Fix: The team slider does not show along with Elementor Pro v3.14.0 or greater.
     
    287291
    288292= 2.2.16 - May 23, 2023 =
    289 * Improved: The import feature. 
     293* Improved: The import feature.
    290294* Fix: The Gutenberg Block preview shows only the preloader sometimes.
    291295* Fix: Social media links add http protocol before the email.
     
    300304* New: The Space between members option.
    301305* New: Some important social icons have been added to the social media option.
    302 * Fix: The grid layout has extra margin-left and margin right. 
     306* Fix: The grid layout has extra margin-left and margin right.
    303307
    304308= 2.2.13 - Feb 06, 2023 =
  • team-free/trunk/src/Admin/Admin.php

    r2837270 r2990981  
    9797     */
    9898    private $sptp_team_slug;
     99    /**
     100     * Member singular name
     101     *
     102     * @var mixed
     103     */
     104    private $sptp_member_singular_name;
     105    /**
     106     * Member singular name
     107     *
     108     * @var mixed
     109     */
     110    private $sptp_member_plural_name;
     111    /**
     112     * Group plural name
     113     *
     114     * @var mixed
     115     */
     116    private $sptp_group_singular_name;
     117    /**
     118     * Group singular name
     119     *
     120     * @var mixed
     121     */
     122    private $sptp_group_plural_name;
    99123
    100124    use Singleton;
  • team-free/trunk/src/Admin/Framework/Classes/fields.class.php

    r2837270 r2990981  
    1919     */
    2020    abstract class TEAMFW_Fields extends TEAMFW_Abstract {
    21 
     21        /**
     22         * Field
     23         *
     24         * @var array
     25         */
     26        public $field = array();
     27
     28        /**
     29         * Value
     30         *
     31         * @var string
     32         */
     33        public $value = '';
     34
     35        /**
     36         * Unique
     37         *
     38         * @var string
     39         */
     40        public $unique = '';
     41
     42        /**
     43         * Where
     44         *
     45         * @var string
     46         */
     47        public $where = '';
     48
     49        /**
     50         * Parent
     51         *
     52         * @var string
     53         */
     54        public $parent = '';
    2255        /**
    2356         * Field class constructor.
  • team-free/trunk/src/Admin/Framework/Classes/metabox-options.class.php

    r2837270 r2990981  
    5252         */
    5353        public $post_type = array();
     54        /**
     55         * Post_formats
     56         *
     57         * @var array
     58         */
     59        public $post_formats = array();
     60        /**
     61         * Page_templates
     62         *
     63         * @var array
     64         */
     65        public $page_templates = array();
    5466        /**
    5567         * Default arguments.
  • team-free/trunk/team-free.php

    r2949061 r2990981  
    1414 * Plugin URI:        https://getwpteam.com/?ref=1
    1515 * Description:       The most versatile and industry-leading WordPress team showcase plugin built to create and manage team members showcases with excellent design and multiple options.
    16  * Version:           2.2.18
     16 * Version:           2.2.19
    1717 * Author:            ShapedPlugin LLC
    1818 * Author URI:        https://shapedplugin.com
     
    3737define( 'SPT_PLUGIN_FILE', __FILE__ );
    3838define( 'SPT_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
    39 define( 'SPT_PLUGIN_VERSION', '2.2.18' );
     39define( 'SPT_PLUGIN_VERSION', '2.2.19' );
    4040define( 'SPT_PLUGIN_ROOT', plugin_dir_url( __FILE__ ) );
    4141define( 'SPT_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.