Plugin Directory

Changeset 3392461


Ignore:
Timestamp:
11/09/2025 05:32:46 PM (3 months ago)
Author:
Webilia
Message:

Release Vertext 1.6.2

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

Legend:

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

    r3386622 r3392461  
    44 * Plugin URI: https://vertexaddons.com/
    55 * Description: Just one plugin instead of a lot!
    6  * Version: 1.6.1
     6 * Version: 1.6.2
    77 * Author: Webilia
    88 * Author URI: https://webilia.com/
  • addons-for-elementor-builder/trunk/afeb.php

    r3386622 r3392461  
    2323     * @var string
    2424     */
    25     public $version = '1.6.1';
     25    public $version = '1.6.2';
    2626
    2727    /**
  • addons-for-elementor-builder/trunk/assets/js/woo-my-account-tabs.js

    r3382971 r3392461  
    140140
    141141    function loadContent(url) {
     142        var $container = $('.afeb-my-account-tab');
     143
     144        if (!$container.length) {
     145            return;
     146        }
     147
    142148        var endpoint = getCurrentEndpoint(url);
    143         var $container = $('.afeb-my-account-tab');
    144149        var $content = $container.find('.woocommerce-MyAccount-content');
    145150        $container.addClass('loading');
     
    170175            },
    171176            error: function() {
    172                 window.location.href = url;
     177                if ($container.length) {
     178                    window.location.href = url;
     179                }
    173180            },
    174181            complete: function() {
     
    218225
    219226    function initWidget() {
     227        var $container = $('.afeb-my-account-tab');
     228
     229        if (!$container.length) {
     230            return;
     231        }
     232
    220233        var currentEndpoint = getCurrentEndpoint();
    221234        if (!window.afebMyAccountInitialized) {
     
    330343
    331344    $(function() {
     345        var hasWidget = $('.afeb-my-account-tab').length > 0;
     346
    332347        if (isEditor && typeof elementor !== 'undefined') {
    333348            elementor.on('preview:loaded', function() {
    334349                setTimeout(initWidget, 500);
    335350            });
    336         } else {
     351        } else if (hasWidget) {
    337352            initWidget();
    338353        }
    339         handleElementorChanges();
     354
     355        if (hasWidget || (isEditor && typeof elementor !== 'undefined')) {
     356            handleElementorChanges();
     357        }
    340358    });
    341359})(jQuery);
  • addons-for-elementor-builder/trunk/html/admin/menus/dashboard/fragments/content/dashboard/tpl.php

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

    r3386622 r3392461  
    66Requires PHP: 7.2
    77Tested up to: 6.8
    8 Stable tag: 1.6.1
     8Stable tag: 1.6.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    232232== Changelog ==
    233233
     234= 1.6.2 =
     235* Fixed : Redirection Issue.
     236
    234237= 1.6.1 =
    235238* Fixed : Enhanced the security and fixed some minor issues.
Note: See TracChangeset for help on using the changeset viewer.