Plugin Directory

Changeset 3202737


Ignore:
Timestamp:
12/05/2024 02:59:36 AM (16 months ago)
Author:
themesflat
Message:

update v-2.2.4

Location:
themesflat-addons-for-elementor/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • themesflat-addons-for-elementor/trunk/assets/css/tf-imagebox.css

    r3129138 r3202737  
    11/* Image Box  */
    2 .elementor-widget-tfimagebox .elementor-widget-container {
     2.elementor-widget-tfimagebox {
    33    overflow: hidden;
    44}
  • themesflat-addons-for-elementor/trunk/assets/css/tf-price-table.css

    r3129138 r3202737  
    1 .elementor-widget-PriceTable > .elementor-widget-container {
     1.elementor-widget-PriceTable {
    22  position: relative;
    33  overflow: initial;
  • themesflat-addons-for-elementor/trunk/readme.txt

    r3189190 r3202737  
    55Tested up to: 6.7
    66Requires PHP: 5.2
    7 Stable tag: 2.2.3
     7Stable tag: 2.2.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • themesflat-addons-for-elementor/trunk/themesflat-addons-for-elementor.php

    r3189189 r3202737  
    55Author: Themesflat
    66Author URI: http://themesflat-addons.com/
    7 Version: 2.2.3
     7Version: 2.2.4
    88Text Domain: themesflat-addons-for-elementor
    99Domain Path: /languages
     
    140140        add_action( 'wp', [ $this, 'hooks' ],100 );
    141141       
    142         // Hook Animation All Widget
    143         add_action('elementor/element/before_section_end', function( $section, $section_id, $args ) {
    144             if( $section->get_name() == 'common' && $section_id == 'section_effects' ){
    145                
    146                 $section->add_control(
    147                     'heading_tfanimation',
    148                     [
    149                         'label' => esc_html__( 'TF Entrace Animation', 'themesflat-addons-for-elementor' ),
    150                         'type' => \Elementor\Controls_Manager::HEADING,
    151                         'separator' => 'before',
    152                     ]
    153                 );
    154 
    155                 $section->add_control(
    156                     'ti_parallax', [
    157                         'label' => __( 'Choose Animation', 'themesflat-addons-for-elementor' ),
    158                         'type' => \Elementor\Controls_Manager::SELECT,
    159                         'default' => '',
    160                         'options' => [
    161                             '' => esc_html__( 'Default', 'themesflat-addons-for-elementor' ),
    162                             'tf-animated-item-fade' => esc_html__( 'Fade In', 'themesflat-addons-for-elementor' ),
    163                             'tf-animated-item' => esc_html__( 'Fade In Up', 'themesflat-addons-for-elementor' ),
    164                             'tf-animated-item-left' => esc_html__( 'Fade In Left', 'themesflat-addons-for-elementor' ),
    165                             'tf-animated-item-right' => esc_html__( 'Fade In Right', 'themesflat-addons-for-elementor' ),
    166                             'tf-animated-item-zoom-slide' => esc_html__( 'Zoom Slide', 'themesflat-addons-for-elementor' ),
    167                             'tf-animated-item-slide-right' => esc_html__( 'Slide In Right', 'themesflat-addons-for-elementor' ),
    168                         ],
    169                         'prefix_class' => '',
    170                     ]
    171                 );
    172             }
    173         }, 10, 3 );
    174         // Hook Animation Container
    175         add_action('elementor/element/before_section_end', function( $section, $section_id, $args ) {
    176             if( $section->get_name() == 'container' && $section_id == 'section_effects' ){
    177                
    178                 $section->add_control(
    179                     'heading_tfanimation',
    180                     [
    181                         'label' => esc_html__( 'TF Entrace Animation', 'themesflat-addons-for-elementor' ),
    182                         'type' => \Elementor\Controls_Manager::HEADING,
    183                         'separator' => 'before',
    184                     ]
    185                 );
    186 
    187                 $section->add_control(
    188                     'ti_parallax', [
    189                         'label' => __( 'Choose Animation', 'themesflat-addons-for-elementor' ),
    190                         'type' => \Elementor\Controls_Manager::SELECT,
    191                         'default' => '',
    192                         'options' => [
    193                             '' => esc_html__( 'Default', 'themesflat-addons-for-elementor' ),
    194                             'tf-animated-item-fade' => esc_html__( 'Fade In', 'themesflat-addons-for-elementor' ),
    195                             'tf-animated-item' => esc_html__( 'Fade In Up', 'themesflat-addons-for-elementor' ),
    196                             'tf-animated-item-left' => esc_html__( 'Fade In Left', 'themesflat-addons-for-elementor' ),
    197                             'tf-animated-item-right' => esc_html__( 'Fade In Right', 'themesflat-addons-for-elementor' ),
    198                         ],
    199                         'prefix_class' => '',
    200                     ]
    201                 );
    202             }
    203         }, 10, 3 );
    204 
     142       
    205143    }   
    206144
     
    643581        //  group image
    644582        wp_register_style( 'tf-animation-item', plugins_url( '/assets/css/tf-animation-item.css', __FILE__ ) );     
    645 
    646         // Entrace Animation
    647         wp_enqueue_style( 'entrace-animation', plugins_url( '/assets/css/tf-entrace-animation.css', __FILE__ ) );
    648583
    649584        // video
     
    777712        wp_register_script( 'simple-parallax', plugins_url( '/assets/js/simple-parallax.min.js', __FILE__ ), [ 'jquery' ], false, true );
    778713        wp_register_script( 'parallax-image', plugins_url( '/assets/js/tf-group-image.js', __FILE__ ), [ 'jquery' ], false, true );
    779         wp_enqueue_script( 'tf-animated', plugins_url( '/assets/js/tf-animated.js', __FILE__ ), [ 'jquery' ], false, true );
     714 
    780715
    781716        // video
  • themesflat-addons-for-elementor/trunk/widgets/widget-pricetable.php

    r3129138 r3202737  
    584584        'size_units' => ['px', 'em', '%'],
    585585        'selectors' => [
    586           '{{WRAPPER}} > .elementor-widget-container' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     586          '{{WRAPPER}} ' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
    587587        ],
    588588      ]
     
    620620        'toggle' => false,
    621621        'selectors' => [
    622           '{{WRAPPER}} > .elementor-widget-container' => 'overflow: {{VALUE}}',
     622          '{{WRAPPER}} ' => 'overflow: {{VALUE}}',
    623623        ],
    624624      ]
     
    629629      [
    630630        'name' => 'general_shadow',
    631         'selector' => '{{WRAPPER}} > .elementor-widget-container',
     631        'selector' => '{{WRAPPER}} ',
    632632      ]
    633633    );
Note: See TracChangeset for help on using the changeset viewer.