Plugin Directory

Changeset 3430773


Ignore:
Timestamp:
01/01/2026 10:40:16 PM (2 months ago)
Author:
Webilia
Message:

Released Vertex 1.6.3

Location:
addons-for-elementor-builder
Files:
654 added
6 edited

Legend:

Unmodified
Added
Removed
  • addons-for-elementor-builder/trunk/addons-for-elementor-builder.php

    r3392461 r3430773  
    44 * Plugin URI: https://vertexaddons.com/
    55 * Description: Just one plugin instead of a lot!
    6  * Version: 1.6.2
     6 * Version: 1.6.3
    77 * Author: Webilia
    88 * Author URI: https://webilia.com/
     
    1414 *
    1515 * Requires at least: 5.0
    16  * Tested up to: 6.8
    17  * Elementor tested up to: 3.31
     16 * Tested up to: 6.9
     17 * Elementor tested up to: 3.34
    1818 */
    1919
     
    2323}
    2424
    25 const AFEB_PHP_MIN_VERSION = '7.2';
     25const AFEB_PHP_MIN_VERSION = '7.4';
    2626const AFEB_WP_MIN_VERSION = '5.0';
    2727
  • addons-for-elementor-builder/trunk/afeb.php

    r3392461 r3430773  
    2323     * @var string
    2424     */
    25     public $version = '1.6.2';
     25    public $version = '1.6.3';
    2626
    2727    /**
  • addons-for-elementor-builder/trunk/app/Handler/Widgets/LoginRegisterHandler.php

    r3382971 r3430773  
    297297
    298298            $this->err_msg = apply_filters('afeb/login_register/login_validation_error_message', $this->err_msg, $user_data);
    299             $this->err_msg = !empty($this->err_msg[0]) ? $this->err_msg[0] : $this->err_msg;
     299
     300            if (is_array($this->err_msg))
     301            {
     302                $this->err_msg = !empty($this->err_msg[0]) ? $this->err_msg[0] : '';
     303            }
    300304            setcookie('afeb_login_error_' . $this->widget_id, esc_html($this->err_msg), time() + 2);
    301305        }
  • addons-for-elementor-builder/trunk/html/admin/menus/dashboard/fragments/content/3rdpt-widgets/tpl.php

    r3382971 r3430773  
    1010
    1111$widgets = new Widgets();
    12 $pro_widgets = new ProWidgets();
     12$pro_widgets = class_exists(ProWidgets::class) ? new ProWidgets() : null;
    1313?>
    1414<!-- Start Search Elements Section -->
     
    4343
    4444    foreach ($trdpt_widgets_array as $widget_key => $widget) :
    45         $trdpt_plugin = !isset($widget['pro']) ?
     45        $trdpt_plugin = !isset($widget['pro']) || !$pro_widgets ?
    4646            $widgets->trdpt_plugins($widget_key) :
    4747            $pro_widgets->trdpt_plugins($widget_key);
  • addons-for-elementor-builder/trunk/html/admin/menus/dashboard/fragments/content/dashboard/tpl.php

    r3392461 r3430773  
    5555
    5656                <div class="afeb-changelog-list-box">
     57                    <div class="afeb-changelog-date">
     58                        <?php esc_html_e('January 1, 2026', 'addons-for-elementor-builder'); ?>
     59                        <span class="afeb-changelog-version"><?php esc_html_e('Version 1.6.3', 'addons-for-elementor-builder'); ?></span>
     60                    </div>
     61                    <ul class="afeb-changelog-list">
     62                        <li><?php esc_html_e('Fixed : Authentication Error Display Issue.', 'addons-for-elementor-builder'); ?></li>
     63                    </ul>
    5764                    <div class="afeb-changelog-date">
    5865                        <?php esc_html_e('November 9, 2025', 'addons-for-elementor-builder'); ?>
  • addons-for-elementor-builder/trunk/readme.txt

    r3392461 r3430773  
    44Tags: elementor, elementor page builder, elementor addons, elementor widget, elementor extensions
    55Requires at least: 5.0
    6 Requires PHP: 7.2
    7 Tested up to: 6.8
    8 Stable tag: 1.6.2
     6Requires PHP: 7.4
     7Tested up to: 6.9
     8Stable tag: 1.6.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    120120Want to dive deeper into how each widget works? Check out [Vertex documentation](https://api.webilia.com/go/vertex-docs) to learn about every feature and customization option available in the Vertex Addons.
    121121
    122 == Development and Source ==
    123 
    124 The distributed plugin bundles several minified assets for performance. Human-readable sources are provided or linked below so the code can be audited, modified, or rebuilt as needed.
    125 
    126 === Vertex-authored assets ===
    127 
    128 The following readable sources live in the repository next to their compiled counterparts:
    129 
    130 * `assets/js/global/dynamic-hook.js` → `assets/js/global/dynamic-hook.min.js`
    131 * `assets/packages/ripple/ripple.js` → `assets/packages/ripple/ripple.min.js`
    132 * `assets/packages/sticky/sticky.js` → `assets/packages/sticky/sticky.min.js`
    133 * `assets/packages/news-ticker-init/news-ticker-init.js` → `assets/packages/news-ticker-init/news-ticker-init.min.js`
    134 * `assets/css/common.css` → `assets/css/common.min.css`
    135 * `assets/css/widgets/woo-checkout.css` → `assets/css/widgets/woo-checkout.min.css`
    136 * `assets/css/widgets/woo-my-account.css` → `assets/css/widgets/woo-my-account.min.css`
    137 * `assets/css/widgets/rtl/woo-my-account.css` → `assets/css/widgets/rtl/woo-my-account.min.css`
    138 
    139 Pro add-on assets follow the same pattern:
    140 
    141 * `plugins/addons-for-elementor-builder-pro/assets/js/form-builder.js` → `plugins/addons-for-elementor-builder-pro/assets/js/form-builder.min.js`
    142 * `plugins/addons-for-elementor-builder-pro/assets/css/widgets/form-builder.css` → `plugins/addons-for-elementor-builder-pro/assets/css/widgets/form-builder.min.css`
    143 
    144 When you modify any of the above helpers, re-minify them with your preferred tooling before releasing a build. Each file can be minified individually with tools such as `uglify-js`, `terser`, or `cssnano`.
    145 
    146 === Third-party libraries ===
    147 
    148 The plugin also ships minified builds of open-source libraries. Readable, beautified copies of the distributed bundles now live next to every `.min` file, so you can inspect or diff the exact payload we include. Refer to the upstream repositories for the canonical source code and build instructions:
    149 
    150 * DataTables core and extensions (`assets/packages/data-table/data-table*.{js,css}`) — <https://datatables.net/>
    151 * Font Awesome (`assets/packages/font-awesome/fontawesome.{css,min.css}`) — <https://fontawesome.com/>
    152 * Font Icon Picker (`assets/packages/font-iconpicker/fonticonpicker*.{js,css}`) — <https://github.com/itsjavi/fonticonpicker>
    153 * GLightbox (`assets/packages/glightbox/glightbox*.{js,css}`) — <https://github.com/mcstudios/glightbox>
    154 * GMaps.js (`assets/packages/gmaps/gmaps.{js,min.js}`) — <https://github.com/hpneo/gmaps>
    155 * Howler.js (`assets/packages/howler/howler.{js,min.js}`) — <https://github.com/goldfire/howler.js>
    156 * Leaflet (`assets/packages/leaflet/leaflet*.{js,css}`) — <https://leafletjs.com/>
    157 * LightGallery (Pro add-on: `plugins/addons-for-elementor-builder-pro/assets/packages/lightgallery/lightgallery-bundle.{css,min.css}`) — <https://www.lightgalleryjs.com/>
    158 * Lottie Web (`assets/packages/lottie/lottie.{js,min.js}`) — <https://github.com/airbnb/lottie-web>
    159 * MixItUp (`assets/packages/mixitup/mixitup.{js,min.js}`) — <https://www.kunkalabs.com/mixitup/>
    160 * Normalize.css (`assets/css/normalize.{css,min.css}`) — <https://github.com/necolas/normalize.css>
    161 * Slick Slider (`assets/packages/slick/slick*.{js,css}`) — <https://github.com/kenwheeler/slick>
    162 * SmartMenus (`assets/packages/smart-menus/smartmenus.{js,min.js}`) — <https://github.com/vadikom/smartmenus>
    163 * Swiper (`assets/packages/swiper/swiper-bundle*.{js,css}`) — <https://swiperjs.com/>
    164 * jQuery UI dialog styles (`assets/packages/jquery-ui/dialog.{css,min.css}`) — <https://jqueryui.com/dialog/>
    165 
    166 Each vendor project documents its own build pipeline; follow the linked instructions if you need to regenerate the distributed files from source.
    167 
    168122== External services ==
    169123
     
    231185
    232186== Changelog ==
     187
     188= 1.6.3 =
     189* Fixed : Authentication Error Display Issue.
    233190
    234191= 1.6.2 =
Note: See TracChangeset for help on using the changeset viewer.