Plugin Directory

Changeset 2896453

Timestamp:
04/10/2023 07:34:23 AM (16 months ago)
Author:
kraftplugins
Message:

committed with grunt-push-svn

Location:
mega-elements-addons-for-elementor
Files:
153 added
5 edited

Legend:

Unmodified
Added
Removed
  • mega-elements-addons-for-elementor/trunk/includes/widgets/meafe-timeline/timeline.css

    r2896390 r2896453  
    123123
    124124.meafe-timeline-main.layout-1 .meafe-timeline-date {
    125     color: #5081F5;
    126125    font-size: 40px;
    127126    line-height: 1.2;
     
    131130
    132131.meafe-timeline-main.layout-1 .meafe-timeline-title {
    133     color: #121212;
    134132    font-size: 28px;
    135133    line-height: 1.2;
  • mega-elements-addons-for-elementor/trunk/includes/widgets/meafe-timeline/timeline.php

    r2896390 r2896453  
    263263        );
    264264
    265         // $this->add_group_control(
    266         //     Group_Control_Image_Size::get_type(),
    267         //     [
    268         //         'name'      => 'btccgs_timeline_image_size',
    269         //         'default'   => 'medium',
    270         //     ]
    271         // );
     265        $this->add_control(
     266            'btccgs_timeline_date_tag',
     267            [
     268                'label'       => esc_html__( 'Date Tag', 'mega-elements-addons-for-elementor' ),
     269                'type' => Controls_Manager::SELECT,
     270                'options' => [
     271                    'h1'    => esc_html__( 'H1', 'mega-elements-addons-for-elementor' ),
     272                    'h2'    => esc_html__( 'H2', 'mega-elements-addons-for-elementor' ),
     273                    'h3'    => esc_html__( 'H3', 'mega-elements-addons-for-elementor' ),
     274                    'h4'    => esc_html__( 'H4', 'mega-elements-addons-for-elementor' ),
     275                    'h5'    => esc_html__( 'H5', 'mega-elements-addons-for-elementor' ),
     276                    'h6'    => esc_html__( 'H6', 'mega-elements-addons-for-elementor' ),
     277                    'span'  => esc_html__( 'Span', 'mega-elements-addons-for-elementor' ),
     278                    'p'     => esc_html__( 'P', 'mega-elements-addons-for-elementor' ),
     279                    'div'   => esc_html__( 'Div', 'mega-elements-addons-for-elementor' ),
     280                ],
     281                'default' => 'h3'
     282            ]
     283        );
     284
     285        $this->add_control(
     286            'btccgs_timeline_title_tag',
     287            [
     288                'label'       => esc_html__( 'Title Tag', 'mega-elements-addons-for-elementor' ),
     289                'type' => Controls_Manager::SELECT,
     290                'options' => [
     291                    'h1'    => esc_html__( 'H1', 'mega-elements-addons-for-elementor' ),
     292                    'h2'    => esc_html__( 'H2', 'mega-elements-addons-for-elementor' ),
     293                    'h3'    => esc_html__( 'H3', 'mega-elements-addons-for-elementor' ),
     294                    'h4'    => esc_html__( 'H4', 'mega-elements-addons-for-elementor' ),
     295                    'h5'    => esc_html__( 'H5', 'mega-elements-addons-for-elementor' ),
     296                    'h6'    => esc_html__( 'H6', 'mega-elements-addons-for-elementor' ),
     297                    'span'  => esc_html__( 'Span', 'mega-elements-addons-for-elementor' ),
     298                    'p'     => esc_html__( 'P', 'mega-elements-addons-for-elementor' ),
     299                    'div'   => esc_html__( 'Div', 'mega-elements-addons-for-elementor' ),
     300                ],
     301                'default' => 'h2'   
     302            ]
     303        );
     304
     305     
    272306
    273307        $this->end_controls_section();
     
    321355            [
    322356                'label'     => __( 'Date Color', 'mega-elements-addons-for-elementor' ),
    323                 // 'default'   => '#5081F5',
     357                'default'   => '#5081F5',
    324358                'type'      => Controls_Manager::COLOR,
    325359                'selectors' => [
    326                     '{{WRAPPER}} .meafe-timeline-date' => 'color: {{VALUE}}',
     360                    '{{WRAPPER}} .meafe-timeline-date' => 'color: {{VALUE}}',
    327361                ],
    328362            ]
     
    388422                'label'     => __( 'Title Color', 'mega-elements-addons-for-elementor' ),
    389423                'type'      => Controls_Manager::COLOR,
    390                 'selectors' => [
    391                     '{{WRAPPER}} .meafe-timeline-title' => 'color: {{VALUE}}',
     424                'default'   => '#121212',
     425                'selectors' => [
     426                    '{{WRAPPER}} .meafe-timeline-title :where(h1, h2, h3, h4, h5, h6, div, p, span)' => 'color: {{VALUE}}',
    392427                ],
    393428            ]
     
    10021037                                    if( $timeline['btccgs_timeline_date'] ) : ?>
    10031038                                    <div <?php $this->print_render_attribute_string( 'btccgs_timeline_date' ); ?> >
    1004                                         <?php echo $timeline['btccgs_timeline_date']; ?>
     1039                                        <<?php echo $settings['btccgs_timeline_date_tag']; ?>>
     1040                                            <?php echo $timeline['btccgs_timeline_date']; ?>
     1041                                        </<?php echo $settings['btccgs_timeline_date_tag']; ?>>
    10051042                                    </div>
    10061043                                    <?php endif;
     
    10081045                                    if( $timeline['btccgs_timeline_title'] ) : ?>
    10091046                                        <div <?php $this->print_render_attribute_string( 'btccgs_timeline_title' ); ?>>
    1010                                             <?php echo $timeline['btccgs_timeline_title']; ?>
     1047                                            <<?php echo $settings['btccgs_timeline_title_tag']; ?>>
     1048                                                <?php echo $timeline['btccgs_timeline_title']; ?>
     1049                                            </<?php echo $settings['btccgs_timeline_title_tag']; ?>>
    10111050                                        </div>
    10121051                                    <?php endif;
     
    10201059                                    if( $timeline['btccgs_timeline_title'] ) : ?>
    10211060                                        <div <?php $this->print_render_attribute_string( 'btccgs_timeline_title' ); ?>>
    1022                                             <?php echo $timeline['btccgs_timeline_title']; ?>
     1061                                            <<?php echo $settings['btccgs_timeline_title_tag']; ?>>
     1062                                                <?php echo $timeline['btccgs_timeline_title']; ?>
     1063                                            </<?php echo $settings['btccgs_timeline_title_tag']; ?>>
    10231064                                        </div>
    10241065                                    <?php endif;
     
    10321073                                    if( $timeline['btccgs_timeline_date'] ) : ?>
    10331074                                    <div <?php $this->print_render_attribute_string( 'btccgs_timeline_date' ); ?> >
    1034                                         <?php echo $timeline['btccgs_timeline_date']; ?>
     1075                                        <<?php echo $settings['btccgs_timeline_date_tag']; ?>>
     1076                                            <?php echo $timeline['btccgs_timeline_date']; ?>
     1077                                        </<?php echo $settings['btccgs_timeline_date_tag']; ?>>
    10351078                                    </div>
    10361079                                    <?php endif;
  • mega-elements-addons-for-elementor/trunk/languages/mega-elements-addons-for-elementor.pot

    r2896390 r2896453  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Mega Elements - Addons for Elementor 1.1.6\n"
     5"Project-Id-Version: Mega Elements - Addons for Elementor 1.1.\n"
    66"Report-Msgid-Bugs-To: \n"
    7 "POT-Creation-Date: 2023-04-10 05:12:41+00:00\n"
     7"POT-Creation-Date: 2023-04-10 0+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
     
    457457#: includes/widgets/meafe-testimonial/testimonial.php:498
    458458#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1009
    459 #: includes/widgets/meafe-timeline/timeline.php:838
     459#: includes/widgets/meafe-timeline/timeline.php:8
    460460msgid "Left"
    461461msgstr ""
     
    494494#: includes/widgets/meafe-testimonial/testimonial.php:499
    495495#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1017
    496 #: includes/widgets/meafe-timeline/timeline.php:846
     496#: includes/widgets/meafe-timeline/timeline.php:8
    497497msgid "Right"
    498498msgstr ""
     
    635635#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:937
    636636#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:968
    637 #: includes/widgets/meafe-timeline/timeline.php:334
    638 #: includes/widgets/meafe-timeline/timeline.php:399
    639 #: includes/widgets/meafe-timeline/timeline.php:464
    640 #: includes/widgets/meafe-timeline/timeline.php:759
    641 #: includes/widgets/meafe-timeline/timeline.php:790
     637#: includes/widgets/meafe-timeline/timeline.php:3
     638#: includes/widgets/meafe-timeline/timeline.php:
     639#: includes/widgets/meafe-timeline/timeline.php:4
     640#: includes/widgets/meafe-timeline/timeline.php:7
     641#: includes/widgets/meafe-timeline/timeline.php:
    642642msgid "Background Color"
    643643msgstr ""
     
    696696#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:420
    697697#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:505
    698 #: includes/widgets/meafe-timeline/timeline.php:298
    699 #: includes/widgets/meafe-timeline/timeline.php:364
    700 #: includes/widgets/meafe-timeline/timeline.php:429
     698#: includes/widgets/meafe-timeline/timeline.php:
     699#: includes/widgets/meafe-timeline/timeline.php:3
     700#: includes/widgets/meafe-timeline/timeline.php:4
    701701msgid "Padding"
    702702msgstr ""
     
    804804#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:638
    805805#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:904
    806 #: includes/widgets/meafe-timeline/timeline.php:650
    807 #: includes/widgets/meafe-timeline/timeline.php:726
     806#: includes/widgets/meafe-timeline/timeline.php:6
     807#: includes/widgets/meafe-timeline/timeline.php:7
    808808msgid "Border Radius"
    809809msgstr ""
     
    840840#: includes/widgets/meafe-testimonial/testimonial.php:83
    841841#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1013
    842 #: includes/widgets/meafe-timeline/timeline.php:842
     842#: includes/widgets/meafe-timeline/timeline.php:8
    843843msgid "Center"
    844844msgstr ""
     
    901901#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1051
    902902#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1071
    903 #: includes/widgets/meafe-timeline/timeline.php:885
    904 #: includes/widgets/meafe-timeline/timeline.php:905
     903#: includes/widgets/meafe-timeline/timeline.php:
     904#: includes/widgets/meafe-timeline/timeline.php:9
    905905msgid "Color"
    906906msgstr ""
     
    949949#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:692
    950950#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:733
    951 #: includes/widgets/meafe-timeline/timeline.php:347
    952 #: includes/widgets/meafe-timeline/timeline.php:412
    953 #: includes/widgets/meafe-timeline/timeline.php:477
     951#: includes/widgets/meafe-timeline/timeline.php:3
     952#: includes/widgets/meafe-timeline/timeline.php:4
     953#: includes/widgets/meafe-timeline/timeline.php:
    954954msgid "Typography"
    955955msgstr ""
     
    973973#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:821
    974974#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:992
    975 #: includes/widgets/meafe-timeline/timeline.php:817
     975#: includes/widgets/meafe-timeline/timeline.php:8
    976976msgid "Spacing"
    977977msgstr ""
     
    10251025#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:918
    10261026#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1032
    1027 #: includes/widgets/meafe-timeline/timeline.php:740
    1028 #: includes/widgets/meafe-timeline/timeline.php:862
     1027#: includes/widgets/meafe-timeline/timeline.php:7
     1028#: includes/widgets/meafe-timeline/timeline.php:8
    10291029msgid "Normal"
    10301030msgstr ""
     
    10991099#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:925
    11001100#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:957
    1101 #: includes/widgets/meafe-timeline/timeline.php:453
    1102 #: includes/widgets/meafe-timeline/timeline.php:747
    1103 #: includes/widgets/meafe-timeline/timeline.php:779
     1101#: includes/widgets/meafe-timeline/timeline.php:4
     1102#: includes/widgets/meafe-timeline/timeline.php:7
     1103#: includes/widgets/meafe-timeline/timeline.php:
    11041104msgid "Text Color"
    11051105msgstr ""
     
    11471147#: includes/widgets/meafe-team-carousel/team-carousel.php:1146
    11481148#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:950
    1149 #: includes/widgets/meafe-timeline/timeline.php:772
     1149#: includes/widgets/meafe-timeline/timeline.php:
    11501150msgid "Hover"
    11511151msgstr ""
     
    13131313#: includes/widgets/meafe-testimonial/testimonial.php:289
    13141314#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:403
    1315 #: includes/widgets/meafe-timeline/timeline.php:281
     1315#: includes/widgets/meafe-timeline/timeline.php:
    13161316msgid "General Style"
    13171317msgstr ""
     
    13331333#: includes/widgets/meafe-team-carousel/team-carousel.php:742
    13341334#: includes/widgets/meafe-team-carousel/team-carousel.php:835
    1335 #: includes/widgets/meafe-timeline/timeline.php:513
     1335#: includes/widgets/meafe-timeline/timeline.php:5
    13361336msgid "Icon Size"
    13371337msgstr ""
     
    13701370#: includes/widgets/meafe-team-carousel/team-carousel.php:1260
    13711371#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1064
    1372 #: includes/widgets/meafe-timeline/timeline.php:898
     1372#: includes/widgets/meafe-timeline/timeline.php:
    13731373msgid "Active"
    13741374msgstr ""
     
    14061406#: includes/widgets/meafe-testimonial/testimonial.php:74
    14071407#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1004
    1408 #: includes/widgets/meafe-timeline/timeline.php:833
     1408#: includes/widgets/meafe-timeline/timeline.php:8
    14091409msgid "Alignment"
    14101410msgstr ""
     
    16891689
    16901690#: includes/widgets/meafe-blog/blog.php:1063
    1691 #: includes/widgets/meafe-timeline/timeline.php:322
     1691#: includes/widgets/meafe-timeline/timeline.php:3
    16921692msgid "Date Color"
    16931693msgstr ""
     
    17291729#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:594
    17301730#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:884
    1731 #: includes/widgets/meafe-timeline/timeline.php:579
    1732 #: includes/widgets/meafe-timeline/timeline.php:706
     1731#: includes/widgets/meafe-timeline/timeline.php:
     1732#: includes/widgets/meafe-timeline/timeline.php:7
    17331733msgid "Width"
    17341734msgstr ""
     
    17481748#: includes/widgets/meafe-testimonial/testimonial.php:540
    17491749#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:612
    1750 #: includes/widgets/meafe-timeline/timeline.php:600
     1750#: includes/widgets/meafe-timeline/timeline.php:6
    17511751msgid "Height"
    17521752msgstr ""
     
    19361936#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:872
    19371937#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:1039
    1938 #: includes/widgets/meafe-timeline/timeline.php:690
    1939 #: includes/widgets/meafe-timeline/timeline.php:869
     1938#: includes/widgets/meafe-timeline/timeline.php:
     1939#: includes/widgets/meafe-timeline/timeline.php:
    19401940msgid "Size"
    19411941msgstr ""
     
    20342034#: includes/widgets/meafe-product-cat-tab/product-cat-tab.php:421
    20352035#: includes/widgets/meafe-product-grid/product-grid.php:364
    2036 #: includes/widgets/meafe-timeline/timeline.php:388
     2036#: includes/widgets/meafe-timeline/timeline.php:
    20372037msgid "Title Color"
    20382038msgstr ""
     
    25902590
    25912591#: includes/widgets/meafe-cta/cta.php:59
    2592 #: includes/widgets/meafe-timeline/timeline.php:629
     2592#: includes/widgets/meafe-timeline/timeline.php:6
    25932593msgid "Cover"
    25942594msgstr ""
     
    26362636#: includes/widgets/meafe-team/team.php:141
    26372637#: includes/widgets/meafe-team-carousel/team-carousel.php:361
     2638
     2639
    26382640msgid "H1"
    26392641msgstr ""
     
    26452647#: includes/widgets/meafe-team/team.php:145
    26462648#: includes/widgets/meafe-team-carousel/team-carousel.php:365
     2649
     2650
    26472651msgid "H2"
    26482652msgstr ""
     
    26542658#: includes/widgets/meafe-team/team.php:149
    26552659#: includes/widgets/meafe-team-carousel/team-carousel.php:369
     2660
     2661
    26562662msgid "H3"
    26572663msgstr ""
     
    26632669#: includes/widgets/meafe-team/team.php:153
    26642670#: includes/widgets/meafe-team-carousel/team-carousel.php:373
     2671
     2672
    26652673msgid "H4"
    26662674msgstr ""
     
    26722680#: includes/widgets/meafe-team/team.php:157
    26732681#: includes/widgets/meafe-team-carousel/team-carousel.php:377
     2682
     2683
    26742684msgid "H5"
    26752685msgstr ""
     
    26812691#: includes/widgets/meafe-team/team.php:161
    26822692#: includes/widgets/meafe-team-carousel/team-carousel.php:381
     2693
     2694
    26832695msgid "H6"
    26842696msgstr ""
     
    26872699#: includes/widgets/meafe-dualheading/dualheading.php:66
    26882700#: includes/widgets/meafe-featurelist/featurelist.php:181
     2701
     2702
    26892703msgid "Span"
    26902704msgstr ""
     
    26932707#: includes/widgets/meafe-dualheading/dualheading.php:67
    26942708#: includes/widgets/meafe-featurelist/featurelist.php:182
     2709
     2710
    26952711msgid "P"
    26962712msgstr ""
     
    26992715#: includes/widgets/meafe-dualheading/dualheading.php:68
    27002716#: includes/widgets/meafe-featurelist/featurelist.php:183
     2717
     2718
    27012719msgid "Div"
    27022720msgstr ""
     
    29122930#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:517
    29132931#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:700
    2914 #: includes/widgets/meafe-timeline/timeline.php:310
    2915 #: includes/widgets/meafe-timeline/timeline.php:376
    2916 #: includes/widgets/meafe-timeline/timeline.php:441
     2932#: includes/widgets/meafe-timeline/timeline.php:3
     2933#: includes/widgets/meafe-timeline/timeline.php:
     2934#: includes/widgets/meafe-timeline/timeline.php:4
    29172935msgid "Bottom Spacing"
    29182936msgstr ""
     
    29512969#: includes/widgets/meafe-testimonial/testimonial.php:514
    29522970#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:586
    2953 #: includes/widgets/meafe-timeline/timeline.php:571
     2971#: includes/widgets/meafe-timeline/timeline.php:
    29542972msgid "Image Style"
    29552973msgstr ""
     
    33393357#: includes/widgets/meafe-pricing-table/pricing-table.php:544
    33403358#: includes/widgets/meafe-pricing-table/pricing-table.php:682
    3341 #: includes/widgets/meafe-timeline/timeline.php:627
     3359#: includes/widgets/meafe-timeline/timeline.php:6
    33423360msgid "Default"
    33433361msgstr ""
     
    40984116#: includes/widgets/meafe-team-carousel/team-carousel.php:1060
    40994117#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:864
    4100 #: includes/widgets/meafe-timeline/timeline.php:679
     4118#: includes/widgets/meafe-timeline/timeline.php:
    41014119msgid "Navigation :: Arrow"
    41024120msgstr ""
     
    41044122#: includes/widgets/meafe-team-carousel/team-carousel.php:1180
    41054123#: includes/widgets/meafe-testimonial-carousel/testimonial-carousel.php:984
    4106 #: includes/widgets/meafe-timeline/timeline.php:806
     4124#: includes/widgets/meafe-timeline/timeline.php:8
    41074125msgid "Navigation :: Dots"
    41084126msgstr ""
     
    42504268
    42514269#: includes/widgets/meafe-timeline/timeline.php:218
    4252 #: includes/widgets/meafe-timeline/timeline.php:421
     4270#: includes/widgets/meafe-timeline/timeline.php:4
    42534271msgid "Timeline Content"
    42544272msgstr ""
     
    42744292msgstr ""
    42754293
    4276 #: includes/widgets/meafe-timeline/timeline.php:290
     4294#: includes/widgets/meafe-timeline/timeline.php:268
     4295msgid "Date Tag"
     4296msgstr ""
     4297
     4298#: includes/widgets/meafe-timeline/timeline.php:288
     4299msgid "Title Tag"
     4300msgstr ""
     4301
     4302#: includes/widgets/meafe-timeline/timeline.php:324
    42774303msgid "Timeline Date"
    42784304msgstr ""
    42794305
    4280 #: includes/widgets/meafe-timeline/timeline.php:356
     4306#: includes/widgets/meafe-timeline/timeline.php:3
    42814307msgid "Timeline Title"
    42824308msgstr ""
    42834309
    4284 #: includes/widgets/meafe-timeline/timeline.php:490
     4310#: includes/widgets/meafe-timeline/timeline.php:
    42854311msgid "Divider & Icons"
    42864312msgstr ""
    42874313
    4288 #: includes/widgets/meafe-timeline/timeline.php:498
     4314#: includes/widgets/meafe-timeline/timeline.php:
    42894315msgid "Divider Color"
    42904316msgstr ""
    42914317
    4292 #: includes/widgets/meafe-timeline/timeline.php:536
    4293 #: includes/widgets/meafe-timeline/timeline.php:551
     4318#: includes/widgets/meafe-timeline/timeline.php:5
     4319#: includes/widgets/meafe-timeline/timeline.php:5
    42944320msgid "Divider Size"
    42954321msgstr ""
    42964322
    4297 #: includes/widgets/meafe-timeline/timeline.php:621
     4323#: includes/widgets/meafe-timeline/timeline.php:6
    42984324msgid "Object Fit"
    42994325msgstr ""
    43004326
    4301 #: includes/widgets/meafe-timeline/timeline.php:628
     4327#: includes/widgets/meafe-timeline/timeline.php:6
    43024328msgid "Fill"
    43034329msgstr ""
    43044330
    4305 #: includes/widgets/meafe-timeline/timeline.php:630
     4331#: includes/widgets/meafe-timeline/timeline.php:6
    43064332msgid "Contain"
    43074333msgstr ""
  • mega-elements-addons-for-elementor/trunk/mega-elements-addons-for-elementor.php

    r2896390 r2896453  
    44 * Plugin URI:        https://kraftplugins.com/mega-elements/
    55 * Description:       The most advanced frontend drag & drop page builder addons for Elementor. Create high-end, beautiful, and pixel perfect websites in less time.
    6  * Version:           1.1.6
     6 * Version:           1.1.
    77 * Requires at least: 4.9
    88 * Requires PHP:      5.6
     
    3636
    3737// Define Constants
    38 define('MEGA_ELEMENTS_ADDONS_FOR_ELEMENTOR_VERSION', '1.1.6');
     38define('MEGA_ELEMENTS_ADDONS_FOR_ELEMENTOR_VERSION', '1.1.');
    3939define('MEGA_ELEMENTS_ADDONS_FOR_ELEMENTOR_URL', plugins_url( '/', __FILE__ ) );
    4040define('MEGA_ELEMENTS_ADDONS_FOR_ELEMENTOR_PATH', plugin_dir_path( __FILE__ ) );
  • mega-elements-addons-for-elementor/trunk/readme.txt

    r2896390 r2896453  
    66Tested up to: 6.2
    77Requires PHP: 5.6
    8 Stable tag: 1.1.6
     8Stable tag: 1.1.
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    6969
    7070== Changelog ==
     71
     72
     73
     74
    7175
    7276=1.1.6=
Note: See TracChangeset for help on using the changeset viewer.