Plugin Directory

Changeset 3409206


Ignore:
Timestamp:
12/03/2025 09:48:58 AM (4 months ago)
Author:
sbouey
Message:

Update to version 1.33

Location:
falang-for-elementor-lite
Files:
2 added
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • falang-for-elementor-lite/tags/1.33/README.txt

    r3365570 r3409206  
    66Tested up to: 6.8
    77Requires PHP: 5.6
    8 Stable tag: 1.32
     8Stable tag: 1.33
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4848* bdthemes-element-pack-lite support
    4949* Themesflats addons
     50* Case theme
    5051* wpforms
    5152Other Widget/Theme can be done on demand.
     
    8283
    8384== Changelog ==
     85= 1.33 (2025/12/02)
     86* add list of gurus/case addons supported
     87
    8488= 1.32 (2025/09/22)
    8589* fix warning on elementor premium addon's
  • falang-for-elementor-lite/tags/1.33/falang-for-elementor-lite.php

    r3365571 r3409206  
    55 * Author: Faboba
    66 * Author URI: https://www.faboba.com
    7  * Version: 1.32
    8  * Elementor tested up to: 3.32.2
     7 * Version: 1.33
     8 * Elementor tested up to: 3.33.2
    99 * Elementor Pro tested up to: 3.32.1
    1010*/
     
    257257     * @update 1.26 remove hidden field/translate button use icon with parameter inside
    258258     * @update 1.28 improve display on repeatable item with tab
     259     * @update 1.33 remove a warning if key exist in the json but not in the widget can be a change in the widget
    259260     *
    260261     * */
     
    312313                        foreach ($falang_section['control'] as $key) {
    313314                            $control = $section->get_controls($key);
     315                            if (!isset($control['name'])){continue;}//remove warning if exist in json but not in the widget (can be a change in the widget)
    314316                            $control_title = $control['name'] . $language_slug;
    315317                            $label = isset($control['label']) ? $control['label'] : '';
  • falang-for-elementor-lite/trunk/README.txt

    r3365570 r3409206  
    66Tested up to: 6.8
    77Requires PHP: 5.6
    8 Stable tag: 1.32
     8Stable tag: 1.33
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4848* bdthemes-element-pack-lite support
    4949* Themesflats addons
     50* Case theme
    5051* wpforms
    5152Other Widget/Theme can be done on demand.
     
    8283
    8384== Changelog ==
     85= 1.33 (2025/12/02)
     86* add list of gurus/case addons supported
     87
    8488= 1.32 (2025/09/22)
    8589* fix warning on elementor premium addon's
  • falang-for-elementor-lite/trunk/falang-for-elementor-lite.php

    r3365571 r3409206  
    55 * Author: Faboba
    66 * Author URI: https://www.faboba.com
    7  * Version: 1.32
    8  * Elementor tested up to: 3.32.2
     7 * Version: 1.33
     8 * Elementor tested up to: 3.33.2
    99 * Elementor Pro tested up to: 3.32.1
    1010*/
     
    257257     * @update 1.26 remove hidden field/translate button use icon with parameter inside
    258258     * @update 1.28 improve display on repeatable item with tab
     259     * @update 1.33 remove a warning if key exist in the json but not in the widget can be a change in the widget
    259260     *
    260261     * */
     
    312313                        foreach ($falang_section['control'] as $key) {
    313314                            $control = $section->get_controls($key);
     315                            if (!isset($control['name'])){continue;}//remove warning if exist in json but not in the widget (can be a change in the widget)
    314316                            $control_title = $control['name'] . $language_slug;
    315317                            $label = isset($control['label']) ? $control['label'] : '';
Note: See TracChangeset for help on using the changeset viewer.