Plugin Directory

Changeset 2166476


Ignore:
Timestamp:
10/01/2019 03:53:06 PM (7 years ago)
Author:
echelonso
Message:
  • Fixed: Comment widget missing Inverse modifier.
  • Changed: Widget form data sections now correctly labeled as Data.
  • Changed: Widget icons now use the Echelon square logo.
  • Added: Lightbox Component widget support within the Slider widget.
  • Added: Hover animation toggles to Rows (prime).
Location:
echelon-so/trunk
Files:
47 edited

Legend:

Unmodified
Added
Removed
  • echelon-so/trunk/acf/widgets/eso-acf-field/eso-acf-field.php

    r2140170 r2166476  
    1515            __('E: ACF Field', 'echelon-so' ),
    1616            array(
    17                 'description' => __('Display an ACF field.', 'echelon-so' ),
     17                'description' => __('Display a supported ACF field.', 'echelon-so' ),
    1818            ),
    1919            array(),
  • echelon-so/trunk/echelon-so.php

    r2148033 r2166476  
    44Plugin URI:     https://echelonso.com
    55Description:    Echelon widgets and features for SiteOrigin Page Builder.
    6 Version:        2.0.2
     6Version:        2.0.3
    77Author:         Echelon
    88Author URI:     https://echelonso.com
     
    102102            add_action( 'admin_notices', array($this, 'admin_notices') );
    103103            add_action( 'wp_head', array($this, 'wp_head'));
    104 
    105104        }
    106105
     
    119118
    120119        public function current_version() {
    121             return '2.0.2';
    122         }
    123 
    124         /*
    125         * Widget Group
    126         */
    127 
    128         function widget_group($tabs) {
    129             $tabs[] = array(
    130                 'title' => __('Echelon Widgets', 'mytheme'),
    131                 'filter' => array(
    132                     'groups' => array('echelon')
    133                 )
    134             );
    135 
    136             return $tabs;
     120            return '2.0.3';
    137121        }
    138122
     
    160144            add_filter( 'siteorigin_widgets_field_class_prefixes', array($this, 'widget_fields_class_prefixes') );
    161145            add_filter( 'siteorigin_widgets_field_class_paths', array($this, 'widget_fields_class_paths') );
    162             add_filter( 'siteorigin_panels_widget_dialog_tabs', array($this, 'widget_group'), 20 );
    163146
    164147            if (class_exists('ACF')) {
  • echelon-so/trunk/features/cell-flex/cell-flex.php

    r2148033 r2166476  
    3434                    '0' => __('-', 'echelon-so'),
    3535                    'uk-flex-left' => __('Left', 'echelon-so'),
    36                     'uk-flex-left-s' => __('Left Above Small', 'echelon-so'),
    37                     'uk-flex-left-m' => __('Left Above Medium', 'echelon-so'),
    38                     'uk-flex-left-l' => __('Left Above Large', 'echelon-so'),
    39                     'uk-flex-left-xl' => __('Left Above xLarge', 'echelon-so'),
    4036                    'uk-flex-center' => __('Center', 'echelon-so'),
    41                     'uk-flex-center-s' => __('Center Above Small', 'echelon-so'),
    42                     'uk-flex-center-m' => __('Center Above Medium', 'echelon-so'),
    43                     'uk-flex-center-l' => __('Center Above Large', 'echelon-so'),
    44                     'uk-flex-center-xl' => __('Center Above xLarge', 'echelon-so'),
    4537                    'uk-flex-right' => __('Right', 'echelon-so'),
    46                     'uk-flex-right-s' => __('Right Above Small', 'echelon-so'),
    47                     'uk-flex-right-m' => __('Right Above Medium', 'echelon-so'),
    48                     'uk-flex-right-l' => __('Right Above Large', 'echelon-so'),
    49                     'uk-flex-right-xl' => __('Right Above xLarge', 'echelon-so'),
    5038                )
    5139            );
  • echelon-so/trunk/features/helper-css/helper-css.php

    r2148033 r2166476  
    102102            );
    103103
    104 
    105 
    106104            // text align - 110
    107105
  • echelon-so/trunk/inc/customiser.php

    r2148033 r2166476  
    3939
    4040    $wp_customize->add_section( 'echelonso_section_features', array(
    41         'title' => __( 'Features','echelon-so' ),
     41        'title' => __( 'Enable / Disable Features','echelon-so' ),
    4242        'description' => __( 'Turn Echelon panels features on or off.', 'echelon-so' ),
    4343        'panel' => 'echelonso_panel_main',
     
    212212
    213213    $wp_customize->add_section( 'echelonso_section_custom_palette', array(
    214         'title' => __( 'Custom Palette','echelon-so' ),
     214        'title' => __( 'Custom Palette Colors','echelon-so' ),
    215215        'description' => __( 'Set custom colors for use in color picker.', 'echelon-so' ),
    216216        'panel' => 'echelonso_panel_main',
     
    374374
    375375    /*
    376     * SECTION: Typography
    377     */
    378 
    379     $wp_customize->add_section( 'echelonso_section_less_typography', array(
    380         'title' => __( 'Typography','echelon-so' ),
    381         'description' => __( 'Be advised theme options may interfere with or overide typography.', 'echelon-so' ),
     376    * SECTION: text
     377    */
     378
     379    $wp_customize->add_section( 'echelonso_section_less_text', array(
     380        'title' => __( 'Text','echelon-so' ),
     381        'description' => __( 'Be advised theme options may interfere with or overide Text settings.', 'echelon-so' ),
    382382        'panel' => 'echelonso_panel_main',
    383383        'priority' => 5200,
     
    394394        'type' => 'number',
    395395        'priority' => 10,
    396         'section' => 'echelonso_section_less_typography',
    397         'label' => __( 'Font Size (rem)' ),
     396        'section' => 'echelonso_section_less_text',
     397        'label' => __( 'Default (rem)' ),
    398398        'description' => __( 'Default: 1', 'echelon-so' ),
    399399    ) );
     
    409409        'type' => 'number',
    410410        'priority' => 20,
    411         'section' => 'echelonso_section_less_typography',
     411        'section' => 'echelonso_section_less_text',
    412412        'label' => __( 'Line Height' ),
    413413        'description' => __( 'Default: 1.5', 'echelon-so' ),
     
    424424        'type' => 'number',
    425425        'priority' => 30,
    426         'section' => 'echelonso_section_less_typography',
    427         'label' => __( 'Small Font Size (rem)' ),
     426        'section' => 'echelonso_section_less_text',
     427        'label' => __( 'Small (rem)' ),
    428428        'description' => __( 'Default: 0.875', 'echelon-so' ),
    429429    ) );
     
    439439        'type' => 'number',
    440440        'priority' => 40,
    441         'section' => 'echelonso_section_less_typography',
    442         'label' => __( 'Medium Font Size (rem)' ),
     441        'section' => 'echelonso_section_less_text',
     442        'label' => __( 'Medium (rem)' ),
    443443        'description' => __( 'Default: 1.25', 'echelon-so' ),
    444444    ) );
     
    454454        'type' => 'number',
    455455        'priority' => 50,
    456         'section' => 'echelonso_section_less_typography',
    457         'label' => __( 'Large Font Size (rem)' ),
     456        'section' => 'echelonso_section_less_text',
     457        'label' => __( 'Large (rem)' ),
    458458        'description' => __( 'Default: 1.5', 'echelon-so' ),
    459459    ) );
     
    469469        'type' => 'number',
    470470        'priority' => 60,
    471         'section' => 'echelonso_section_less_typography',
    472         'label' => __( 'xLarge Font Size (rem)' ),
     471        'section' => 'echelonso_section_less_text',
     472        'label' => __( 'Extra Large (rem)' ),
    473473        'description' => __( 'Default: 2', 'echelon-so' ),
    474474    ) );
     
    484484        'type' => 'number',
    485485        'priority' => 70,
    486         'section' => 'echelonso_section_less_typography',
    487         'label' => __( '2xLarge Font Size (rem)' ),
     486        'section' => 'echelonso_section_less_text',
     487        'label' => __( 'Extra Extra Large (rem)' ),
    488488        'description' => __( 'Default: 2.625', 'echelon-so' ),
    489489    ) );
     
    884884        'priority' => 30,
    885885        'section' => 'echelonso_section_less_heading',
    886         'label' => __( 'xLarge (rem)' ),
     886        'label' => __( 'Extra Large (rem)' ),
    887887        'description' => __( 'Default: 8', 'echelon-so' ),
    888888    ) );
     
    899899        'priority' => 40,
    900900        'section' => 'echelonso_section_less_heading',
    901         'label' => __( '2xLarge (rem)' ),
     901        'label' => __( 'Extra Extra Large (rem)' ),
    902902        'description' => __( 'Default: 11', 'echelon-so' ),
    903903    ) );
  • echelon-so/trunk/inc/less/less.php

    r2148033 r2166476  
    4343$less_vars['height-large-height'] = (isset($options['height-large-height']) ? $options['height-large-height'] : '450') . 'px';
    4444
    45 // typography - done
     45// text - done
    4646$less_vars['global-font-size'] = (isset($options['global-font-size']) ? $options['global-font-size'] : '1') . 'rem';
    4747$less_vars['global-line-height'] = (isset($options['global-line-height']) ? $options['global-line-height'] : '1.5');
  • echelon-so/trunk/inc/less/uikit-src/components/flex.less

    r2148033 r2166476  
    4949    .uk-flex-around\@s { justify-content: space-around; }
    5050
    51     .uk-flex-left-s { justify-content: flex-start; }
    52     .uk-flex-center-s { justify-content: center; }
    53     .uk-flex-right-s { justify-content: flex-end; }
    54     .uk-flex-between-s { justify-content: space-between; }
    55     .uk-flex-around-s { justify-content: space-around; }
    56 
    5751}
    5852
     
    6660    .uk-flex-around\@m { justify-content: space-around; }
    6761
    68     .uk-flex-left-m { justify-content: flex-start; }
    69     .uk-flex-center-m { justify-content: center; }
    70     .uk-flex-right-m { justify-content: flex-end; }
    71     .uk-flex-between-m { justify-content: space-between; }
    72     .uk-flex-around-m { justify-content: space-around; }
    73 
    7462}
    7563
     
    8371    .uk-flex-around\@l { justify-content: space-around; }
    8472
    85     .uk-flex-left-l { justify-content: flex-start; }
    86     .uk-flex-center-l { justify-content: center; }
    87     .uk-flex-right-l { justify-content: flex-end; }
    88     .uk-flex-between-l { justify-content: space-between; }
    89     .uk-flex-around-l { justify-content: space-around; }
    90 
    9173}
    9274
     
    9981    .uk-flex-between\@xl { justify-content: space-between; }
    10082    .uk-flex-around\@xl { justify-content: space-around; }
    101 
    102     .uk-flex-left-xl { justify-content: flex-start; }
    103     .uk-flex-center-xl { justify-content: center; }
    104     .uk-flex-right-xl { justify-content: flex-end; }
    105     .uk-flex-between-xl { justify-content: space-between; }
    106     .uk-flex-around-xl { justify-content: space-around; }
    10783
    10884}
  • echelon-so/trunk/inc/less/uikit-src/components/text.less

    r2148033 r2166476  
    247247
    248248}
     249
    249250.hook-text-meta() {
    250251
    251252}
     253
    252254.hook-text-small() {
    253255
    254256}
     257
    255258.hook-text-large() {
    256259
    257260}
     261
    258262.hook-text-background() {
    259263
    260264}
     265
    261266.hook-text-misc() {
    262267
     
    297302}
    298303.hook-inverse-text-meta() {
    299    
    300 }
     304
     305}
  • echelon-so/trunk/inc/modifiers.php

    r2148033 r2166476  
    5555                'uk-text-xlarge' => __('Text Extra Large', 'echelon-so'),
    5656                'uk-heading-small' => __('Heading Small', 'echelon-so'),
     57                'uk-heading-medium' => __('Heading Medium', 'echelon-so'),
    5758                'uk-heading-large' => __('Heading Large', 'echelon-so'),
    5859                'uk-heading-xlarge' => __('Heading Extra Large', 'echelon-so'),
  • echelon-so/trunk/readme.txt

    r2148038 r2166476  
    88License URI: https://www.gnu.org/licenses/gpl-3.0.txt
    99
    10 Widgets, Features, Advanced Custom Fields, Custom Post Types and WooCommerce for SiteOrigin Page Builder.
     10Echelon SiteOrigin Widgets transforms Page Builder into a premium page building powerhouse that anyone can use.
    1111
    1212== Description ==
    13 
    14 IMPORTANT: v2 is a breaking update, please test before upgrading from v1. If you do update and something important breaks, deactivate Echelon and use the v1 download from the link below. Prime is available for v2 only.
    15 
    16 [v1 Download](https://echelonso.com/echelon-so-legacy.zip)
    17 
    18 Echelon SiteOrigin Widgets and Features enhance the functionality of the SiteOrigin Page Builder panels and adds a unique set of premium quality widgets. Echelon SiteOrigin widgets are designed in a neutral plain style with styling available in the customizer. Along with the widgets and features Echelon enables drag and drop for Advanced Custom Fields, Custom Post Types, WooCommerce and Custom Loops.
     13Echelon SiteOrigin Widgets and Features enhance the functionality of the SiteOrigin Page Builder panels and adds a unique set of premium quality widgets that make building pro level pages fast and easy. Echelon SiteOrigin widgets are designed in a neutral plain style with dedicated widgets for Advanced Custom Fields, Custom Post Types, WooCommerce and Custom Loops. As Echelon is a framework our widgets provide the unique abilty to be combined together, creating a wide range of pages and sections which would not be possible with other plugins.
    1914
    2015[Echelon Home](https://echelonso.com)
     
    4237
    4338### Helper CSS
    44 Add CSS helper classes to widgets, rows and cells. Helpful classes include desktop and mobile visibility, box shadows, box rounding and clipping.
     39Add CSS helper classes to widgets, rows and cells. Helpful classes include desktop and mobile visibility, box shadows, box rounding, clipping and positioning.
    4540
    4641### Highlight (Prime)
     
    5247### Linked Widgets
    5348When enabled the widget will be wrapped in a link tag to your given URL, Post ID, SiteOrigin Syntax or the permalink for the current global post. Simple and quick way to link entire widgets without worrying about buttons or text links.
     49
     50### Parallax (Prime)
     51Animate the CSS properties of widgets relative to their position in the viewport. Translate X and Y positions, background positions, rotation, scale, opacity, blur and greyscale.
    5452
    5553### Sticky
     
    108106
    109107### 404
    110 For a cherry on top we have enabled Echelon Layouts for 404 pages aswell. As they are not in the loop you will need to use Custom Loop widgets to handle dynamic data if such data needed.
    111 
    112 ### Library
    113 Echelon has an ever expanding library of pre-built blocks you can import to get started building straightaway. We add new content to the Library every week.
     108For a cherry on top we have enabled Echelon Layouts for 404 pages as well. As they are not in the loop you will need to use Custom Loop widgets to handle dynamic data if such data is needed.
    114109
    115110### Prime
    116 Echelon Prime is our paid version and upgrades many of the widgets and features and adds Prime specific functionality. Echelon is an unlimited product so we have two plans available one for single users and one for teams.
     111Echelon Prime is our paid version and upgrades many of the widgets and features and adds Prime specific functionality. Echelon is an unlimited product so we have two plans available one for single developers and one for development teams.
    117112
    118113== Changelog ==
     114
     115= 2.0.3 =
     116* Fixed: Comment widget missing Inverse modifier.
     117* Changed: Widget form data sections now correctly labeled as Data.
     118* Changed: Widget icons now use the Echelon square logo.
     119* Added: Lightbox Component widget support within the Slider widget.
     120* Added: Hover animation toggles to Rows (prime).
    119121
    120122= 2.0.2 =
     
    130132* Added: LESS control for Gutters (padding, grid).
    131133* Added: LESS control for Height.
    132 * Fixed: LESS Typograhy rounding decimals.
     134* Fixed: LESS Typograhy decimal rounding.
    133135* Changed: Visibilty Helper CSS now has own style group (Visibility).
    134136* Added: LESS control for max Lightbox width and height.
    135137* Fixed: Lightbox nav color being overriden by themes anchor styling.
    136138* Fixed: Cached CSS files not being cleared on LESS compile.
    137 * Added: Widget group in the Add New Widget modal.
    138 * Changed: Widget icon to be more Echelon.
    139 * Added: Various widget descriptions.
    140 * Added: Responsive options to Cell Flex features (style regen required)
    141 * Fixed: Deadspot in tablet visibility.
     139* Fixed: Deadspot in Visibility.
    142140
    143141= 2.0.1 =
  • echelon-so/trunk/widgets/eso-before-after/eso-before-after.php

    r2148033 r2166476  
    1616            array(
    1717                'description' => __('Compare the visual difference between two images.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
    1918            ),
    2019            array(),
     
    5756        $return['before_after'] = array(
    5857            'type' => 'section',
    59             'label' => __( 'Before & After' , 'echelon-so' ),
     58            'label' => __( 'Data' , 'echelon-so' ),
    6059            'hide' => true,
    6160            'fields' => array(
  • echelon-so/trunk/widgets/eso-button/eso-button.php

    r2148033 r2166476  
    1616            array(
    1717                'description' => __('Globally styled square, round and pill buttons.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
    1918            ),
    2019            array(),
     
    7877        $return['button'] = array(
    7978            'type' => 'section',
    80             'label' => __( 'Button' , 'echelon-so' ),
     79            'label' => __( 'Data' , 'echelon-so' ),
    8180            'hide' => true,
    8281            'fields' => array(
     
    109108                'target_type' => array(
    110109                    'type' => 'select',
    111                     'label' => __('Target', 'echelon-so'),
     110                    'label' => __('Target Type', 'echelon-so'),
    112111                    'default' => 'direct',
    113112                    'options' => array(
     
    163162                    'type' => 'select',
    164163                    'default' => '0',
    165                     'label' => __('Weight', 'echelon-so'),
     164                    'label' => __('Font Weight', 'echelon-so'),
    166165                    'options' => $echelon_so_modifiers->font_weight(),
    167166                ),
     
    175174                    'type' => 'select',
    176175                    'default' => '0',
    177                     'label' => __('Radius', 'echelon-so'),
     176                    'label' => __('Border Radius', 'echelon-so'),
    178177                    'options' => $echelon_so_modifiers->border_radius()
    179178                ),
  • echelon-so/trunk/widgets/eso-card/eso-card.php

    r2148033 r2166476  
    1515            array(
    1616                'description' => __('Text and image based content cards.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
    1817            ),
    1918            array(),
     
    106105        $return['card'] = array(
    107106            'type' => 'section',
    108             'label' => __( 'Card' , 'echelon-so' ),
     107            'label' => __( 'Data' , 'echelon-so' ),
    109108            'hide' => true,
    110109            'fields' => array(
  • echelon-so/trunk/widgets/eso-comment/eso-comment.php

    r2148033 r2166476  
    1515            array(
    1616                'description' => __('Comments with images, text and person info.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
    1817            ),
    1918            array(),
     
    6059        (empty($instance['modifiers']['body_weight'])) ?: $return['body_class'][] = $instance['modifiers']['body_weight'];
    6160
     61        $return['wrap_class'] = array();
     62        (empty($instance['modifiers']['inverse'])) ?: $return['wrap_class'][] = $instance['modifiers']['inverse'];
     63
    6264        // icon
    6365        $return['icon'] = $instance['comment']['rating_icon'];
     
    7779        $return['comment'] = array(
    7880            'type' => 'section',
    79             'label' => __( 'Comment' , 'echelon-so' ),
     81            'label' => __( 'Data' , 'echelon-so' ),
    8082            'hide' => true,
    8183            'fields' => array(
    8284                'template' => array(
    83                     'type' => 'select',
    84                     'default' => 'default',
    85                     'label' => __('Template', 'echelon-so'),
    86                     'options' => array(
    87                         'default' => __('Default', 'echelon-so'),
    88                         'wide' => __('Wide', 'echelon-so'),
    89                     ),
    90                     'state_emitter' => array(
    91                         'callback' => 'select',
    92                         'args' => array( 'template' )
    93                     )
    94                 ),
     85                    'type' => 'select',
     86                    'default' => 'default',
     87                    'label' => __('Template', 'echelon-so'),
     88                    'options' => array(
     89                        'default' => __('Default', 'echelon-so'),
     90                        'wide' => __('Wide', 'echelon-so'),
     91                    ),
     92                    'state_emitter' => array(
     93                        'callback' => 'select',
     94                        'args' => array( 'template' )
     95                    )
     96                ),
    9597                'image' => array(
    9698                    'type' => 'media',
     
    167169                    'label' => __('Body Weight', 'echelon-so'),
    168170                    'options' => $echelon_so_modifiers->font_weight()
    169                 )
     171                ),
     172                'inverse' => array(
     173                    'type' => 'select',
     174                    'default' => '0',
     175                    'label' => __('Inverse', 'echelon-so'),
     176                    'options' => $echelon_so_modifiers->inverse()
     177                )
    170178            )
    171179        );
  • echelon-so/trunk/widgets/eso-comment/tpl/default.php

    r2140169 r2166476  
    1 <div class="uk-comment">
     1<div class="uk-comment <?php echo esc_attr(implode(' ', $wrap_class)); ?>">
    22    <div class="uk-comment-header uk-margin-remove-bottom uk-grid-medium uk-flex-middle" uk-grid>
    33
  • echelon-so/trunk/widgets/eso-comment/tpl/wide.php

    r2140169 r2166476  
    1 <div class="uk-comment">
     1<div class="uk-comment <?php echo esc_attr(implode(' ', $wrap_class)); ?>">
    22    <div class="uk-comment-header uk-margin-remove-bottom uk-grid-medium uk-flex-middle" uk-grid>
    33
  • echelon-so/trunk/widgets/eso-count-query-result/eso-count-query-result.php

    r2148033 r2166476  
    22/*
    33Widget Name: E: Count Query Result
    4 Description: Display the count from a custom query.
     4Description: Display the count from a posts query.
    55Author: Echelon
    66Author URI: https://echelonso.com
     
    1515            __('E: Count Query Result', 'echelon-so' ),
    1616            array(
    17                 'description' => __('Display the count from a custom query.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
     17                'description' => __('Display the count from a posts query.', 'echelon-so' ),
    1918            ),
    2019            array(),
     
    6261        $return['count_query_result'] = array(
    6362            'type' => 'section',
    64             'label' => __( 'Count Query Result' , 'echelon-so' ),
     63            'label' => __( 'Data' , 'echelon-so' ),
    6564            'hide' => true,
    6665            'fields' => array(
     
    7271                'query' => array(
    7372                    'type' => 'posts',
    74                     'label' => __('Some Posts Query', 'echelon-so' ),
     73                    'label' => __('Query', 'echelon-so' ),
    7574                )
    7675            )
     
    8584                    'type' => 'select',
    8685                    'default' => '0',
    87                     'label' => __('Size', 'echelon-so'),
     86                    'label' => __('Font Size', 'echelon-so'),
    8887                    'options' => $echelon_so_modifiers->font_size()
    8988                ),
     
    9190                    'type' => 'select',
    9291                    'default' => '0',
    93                     'label' => __('Weight', 'echelon-so'),
    94                     'description' => __('Google fonts ignore this modifier.', 'echelon-so'),
     92                    'label' => __('Font Weight', 'echelon-so'),
    9593                    'options' => $echelon_so_modifiers->font_weight()
    9694                ),
     
    9896                    'type' => 'select',
    9997                    'default' => '0',
    100                     'label' => __('Alignment', 'echelon-so'),
     98                    'label' => __('Text Align', 'echelon-so'),
    10199                    'options' => $echelon_so_modifiers->text_align()
    102100                ),
  • echelon-so/trunk/widgets/eso-counter/eso-counter.php

    r2148033 r2166476  
    1515            array(
    1616                'description' => __('Animate the count between two numbers.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
    1817            ),
    1918            array(),
     
    5251        $return['wrapper_class'] = array();
    5352        (empty($instance['modifiers']['align'])) ?: $return['class'][] = $instance['modifiers']['align'];
     53        (empty($instance['modifiers']['inverse'])) ?: $return['wrapper_class'][] = $instance['modifiers']['inverse'];
    5454
    5555        return $return;
     
    6666        $return['counter'] = array(
    6767            'type' => 'section',
    68             'label' => __( 'Counter' , 'echelon-so' ),
     68            'label' => __( 'Data' , 'echelon-so' ),
    6969            'hide' => true,
    7070            'fields' => array(
     
    115115                    'type' => 'select',
    116116                    'default' => '0',
    117                     'label' => __('Size', 'echelon-so'),
     117                    'label' => __('Font Size', 'echelon-so'),
    118118                    'options' => $echelon_so_modifiers->font_size(),
    119119                ),
     
    121121                    'type' => 'select',
    122122                    'default' => '0',
    123                     'label' => __('Weight', 'echelon-so'),
    124                     'description' => __('Google fonts ignore this modifier.', 'echelon-so'),
     123                    'label' => __('Font Weight', 'echelon-so'),
    125124                    'options' => $echelon_so_modifiers->font_weight()
    126125                ),
     
    128127                    'type' => 'select',
    129128                    'default' => '0',
    130                     'label' => __('Align', 'echelon-so'),
     129                    'label' => __('Text Align', 'echelon-so'),
    131130                    'options' => $echelon_so_modifiers->text_align()
     131                ),
     132                'inverse' => array(
     133                    'type' => 'select',
     134                    'default' => '0',
     135                    'label' => __('Inverse', 'echelon-so'),
     136                    'options' => $echelon_so_modifiers->inverse()
    132137                )
    133138            )
  • echelon-so/trunk/widgets/eso-counter/tpl/default.php

    r2140165 r2166476  
    1 <div id="<?php echo $int_id; ?>_spy" uk-scrollspy="cls: eso; hidden: false; offset-top: -<?php echo esc_attr($offset); ?>;" class="<?php echo esc_attr(implode(' ', $wrapper_class)); ?>">
     1<div id="<?php echo $int_id; ?>_spy" uk-scrollspy="cls: eso; hidden: false; offset-top: -<?php echo esc_attr($offset); ?>; delay: 10;" class="<?php echo esc_attr(implode(' ', $wrapper_class)); ?>">
    22    <div id="<?php echo $int_id; ?>" class="eso-counter <?php echo esc_attr(implode(' ', $class)); ?>">
    33        <?php echo esc_html($startVal); ?>
     
    77<script type="text/javascript">
    88(function($) {
    9    
    10     $(document).ready(function() {
    11        
    12         $(document).on('inview', '#<?php echo $int_id; ?>_spy', function() {
    13            
    14             var options = {
    15                 useEasing: <?php echo $easing; ?>,
    16                 decimal: '<?php echo esc_attr($decimal); ?>',
    17                 useGrouping: <?php echo esc_attr($grouping); ?>,
    18                 separator: '<?php echo esc_attr($separator); ?>'
    19             };
    20            
    21             var <?php echo $int_id; ?> = new CountUp('<?php echo $int_id; ?>', <?php echo esc_attr($startVal); ?>, <?php echo esc_attr($endVal); ?>, <?php echo esc_attr($decimal_places); ?>, <?php echo esc_attr($duration); ?>, options).start();
    22            
    23         });
    24        
    25     })
    26    
     9
     10    $(document).on('inview', '#<?php echo $int_id; ?>_spy', function() {
     11
     12        var options = {
     13            useEasing: <?php echo $easing; ?>,
     14            decimal: '<?php echo esc_attr($decimal); ?>',
     15            useGrouping: <?php echo esc_attr($grouping); ?>,
     16            separator: '<?php echo esc_attr($separator); ?>'
     17        };
     18
     19        var <?php echo $int_id; ?> = new CountUp('<?php echo $int_id; ?>', <?php echo esc_attr($startVal); ?>, <?php echo esc_attr($endVal); ?>, <?php echo esc_attr($decimal_places); ?>, <?php echo esc_attr($duration); ?>, options).start();
     20
     21    });
     22
    2723})(jQuery)
    2824</script>
  • echelon-so/trunk/widgets/eso-custom-loop/eso-custom-loop.php

    r2148033 r2166476  
    1515            array(
    1616                'description' => __('Run a loop for an Echelon layout based on a posts query.', 'echeon-so' ),
    17                 'panels_groups' => array('echelon')
    1817            ),
    1918            array(),
     
    4443        $return['custom_loop'] = array(
    4544            'type' => 'section',
    46             'label' => __( 'Custom Loop' , 'echelon-so' ),
     45            'label' => __( 'Data' , 'echelon-so' ),
    4746            'hide' => true,
    4847            'fields' => array(
  • echelon-so/trunk/widgets/eso-description-list/eso-description-list.php

    r2148033 r2166476  
    1616            array(
    1717                'description' => __('A simple alternative to item lists.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
    1918            ),
    2019            array(),
     
    3231        $return['class'] = array();
    3332        (empty($instance['modifiers']['divider'])) ?: $return['class'][] = $instance['modifiers']['divider'];
     33
    3434        return $return;
    3535    }
     
    4343        $return['description_list'] = array(
    4444            'type' => 'section',
    45             'label' => __( 'Description List' , 'echelon-so' ),
     45            'label' => __( 'Data' , 'echelon-so' ),
    4646            'hide' => true,
    4747            'fields' => array(
    4848                'list_items' => array(
    4949                    'type' => 'repeater',
    50                     'label' => __( 'List Items' , 'widget-form-fields-text-domain' ),
    51                     'item_name'  => __( 'Item', 'siteorigin-widgets' ),
     50                    'label' => __( 'List Items' , 'echelon-so' ),
     51                    'item_name'  => __( 'Item', 'echelon-so' ),
    5252                    'fields' => array(
    5353                        'heading' => array(
    5454                            'type' => 'text',
    55                             'label' => __( 'Heading', 'widget-form-fields-text-domain' )
     55                            'label' => __( 'Heading', 'echelon-so' )
    5656                        ),
    5757                        'text' => array(
    5858                            'type' => 'textarea',
    59                             'label' => __( 'Text', 'widget-form-fields-text-domain' )
     59                            'label' => __( 'Text', 'echelon-so' )
    6060                        )
    6161                    )
  • echelon-so/trunk/widgets/eso-divider/eso-divider.php

    r2148033 r2166476  
    1717            array(
    1818                'description' => __('Horizontal and veritcal dividers.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
    2019            ),
    2120            array(),
     
    5453        $return['divider'] = array(
    5554            'type' => 'section',
    56             'label' => __( 'Divider' , 'echelon-so' ),
     55            'label' => __( 'Data' , 'echelon-so' ),
    5756            'hide' => true,
    5857            'fields' => array(
     
    6261                    'label' => __('Template', 'echelon-so'),
    6362                    'options' => array(
    64                         'default' => __('Default', 'echelon-so'),
     63                        'default' => __('Large', 'echelon-so'),
    6564                        'small' => __('Small', 'echelon-so'),
    6665                        'vertical' => __('Vertical', 'echelon-so'),
     
    7372                'icon' => array(
    7473                    'type' => 'icon',
    75                     'label' => __( 'Rating Icon', 'echelon-so' ),
     74                    'label' => __( 'Icon', 'echelon-so' ),
    7675                    'state_handler' => array(
    7776                        'template[icon]' => array( 'show' ),
     
    8281                    'type' => 'color',
    8382                    'default' => '#252525',
    84                     'label' => __( 'Rating Color', 'echelon-so' ),
     83                    'label' => __( 'Icon Color', 'echelon-so' ),
    8584                    'state_handler' => array(
    8685                        'template[icon]' => array( 'show' ),
  • echelon-so/trunk/widgets/eso-feature/eso-feature.php

    r2148033 r2166476  
    1515            array(
    1616                'description' => __('Icon based small and large feature boxes.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
    1817            ),
    1918            array(),
     
    8988        $return['feature'] = array(
    9089            'type' => 'section',
    91             'label' => __( 'Feature' , 'echelon-so' ),
     90            'label' => __( 'Data' , 'echelon-so' ),
    9291            'hide' => true,
    9392            'fields' => array(
  • echelon-so/trunk/widgets/eso-filter/eso-filter.php

    r2148033 r2166476  
    1717            array(
    1818                'description' => __('Masonry and grid content filters.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
    2019            ),
    2120            array(),
  • echelon-so/trunk/widgets/eso-heading/eso-heading.php

    r2148033 r2166476  
    1616            array(
    1717                'description' => __('Various section heading styles.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
    1918            ),
    2019            array(),
     
    4948        $return['heading'] = array(
    5049            'type' => 'section',
    51             'label' => __( 'Heading' , 'echelon-so' ),
     50            'label' => __( 'Data' , 'echelon-so' ),
    5251            'hide' => true,
    5352            'fields' => array(
  • echelon-so/trunk/widgets/eso-icon-list/eso-icon-list.php

    r2148033 r2166476  
    33/*
    44Widget Name: E: Icon List
    5 Description: A list of icons with text.
     5Description: An icon based text list.
    66Author: Echelon
    77Author URI: https://echelonso.com
     
    1616            __('E: Icon List', 'echelon-so'),
    1717            array(
    18                 'description' => __('Add an icon based text list.', 'echelon-so'),
    19                 'panels_groups' => array('echelon')
     18                'description' => __('An icon based text list.', 'echelon-so'),
    2019            ),
    2120            array(),
     
    6160        $return['icon_list'] = array(
    6261            'type' => 'section',
    63             'label' => __( 'List Items' , 'echelonso-text-domain' ),
     62            'label' => __( 'Data' , 'echelonso-text-domain' ),
    6463            'hide' => true,
    6564            'fields' => array(
  • echelon-so/trunk/widgets/eso-lightbox-component-image/eso-lightbox-component-image.php

    r2148033 r2166476  
    22/*
    33Widget Name: E: Lightbox Component - Image
    4 Description: Use inside the Lightbox Gallery, Lightbox Filter and Lightbox Slider widgets.
     4Description: Images designed for Lighbox supported widgets.
    55Author: Echelon
    66Author URI: https://echelonso.com
     
    1414            __('E: Lightbox Component - Image', 'echelon-so'),
    1515            array(
    16                 'description' => __('Use inside the Lightbox Gallery, Lightbox Filter and Lightbox Slider widgets.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
     16                'description' => __('Images designed for Lighbox supported widgets.', 'echelon-so' ),
    1817            ),
    1918            array(),
     
    9796        $return['lightbox_content'] = array(
    9897            'type' => 'section',
    99             'label' => __( 'Lightbox Content' , 'echelon-so' ),
     98            'label' => __( 'Data' , 'echelon-so' ),
    10099            'hide' => true,
    101100            'fields' => array(
  • echelon-so/trunk/widgets/eso-lightbox-gallery/eso-lightbox-gallery.php

    r2148033 r2166476  
    33/*
    44Widget Name: E: Lightbox Gallery
    5 Description: Grid based Lightbox Galleries (uses Image Components).
     5Description: Grid based Lightbox Galleries (uses Lightbox Components).
    66Author: Echelon
    77Author URI: https://echelonso.com
     
    1515            __('E: Lightbox Gallery', 'echelon-so'),
    1616            array(
    17                 'description' => __('Grid based Lightbox Galleries (uses Image Components).', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
     17                'description' => __('Grid based Lightbox Galleries (uses Lightbox Components).', 'echelon-so' ),
    1918            ),
    2019            array(),
     
    4443        $return['lightbox_gallery'] = array(
    4544            'type' => 'section',
    46             'label' => __( 'Lightbox' , 'echelon-so' ),
     45            'label' => __( 'Data' , 'echelon-so' ),
    4746            'hide' => true,
    4847            'fields' => array(
  • echelon-so/trunk/widgets/eso-modal/eso-modal.php

    r2148033 r2166476  
    33/*
    44Widget Name: E: Modal
    5 Description: Overlay content on the page with Modals.
     5Description: Overlay content on the page with Popup Modals.
    66Author: Echelon
    77Author URI: https://echelonso.com
     
    1616            __('E: Modal', 'echelon-so'),
    1717            array(
    18                 'description' => __('Overlay content on the page with Modals.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
     18                'description' => __('Overlay content on the page with Popup Modals.', 'echelon-so' ),
    2019            ),
    2120            array(),
     
    9493        $return['modal'] = array(
    9594            'type' => 'section',
    96             'label' => __( 'Modal' , 'echelon-so' ),
     95            'label' => __( 'Data' , 'echelon-so' ),
    9796            'hide' => true,
    9897            'fields' => array(
  • echelon-so/trunk/widgets/eso-nav/eso-nav.php

    r2148033 r2166476  
    1717            array(
    1818                'description' => __('A vertical nav for Off Canvas and  other uses.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
    2019            ),
    2120            array(),
  • echelon-so/trunk/widgets/eso-off-canvas/eso-off-canvas.php

    r2148033 r2166476  
    33/*
    44Widget Name: E: Off Canvas
    5 Description: Off page sections for menus and content.
     5Description: Off page content areas.
    66Author: Echelon
    77Author URI: https://echelonso.com
     
    1616            __('E: Off Canvas', 'echelon-so'),
    1717            array(
    18                 'description' => __('Off page sections for menus and content.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
     18                'description' => __('Off page content areas.', 'echelon-so' ),
    2019            ),
    2120            array(),
     
    5150        $return['off_canvas'] = array(
    5251            'type' => 'section',
    53             'label' => __( 'Off Canvas' , 'echelon-so' ),
     52            'label' => __( 'Data' , 'echelon-so' ),
    5453            'hide' => true,
    5554            'fields' => array(
  • echelon-so/trunk/widgets/eso-overlay/eso-overlay.php

    r2148033 r2166476  
    1616            array(
    1717                'description' => __('Overlay two different page builder layouts.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
    1918            ),
    2019            array(),
     
    6362
    6463        // transition
    65         if ( $instance['overlay']['template'] == 'transition') {
    66             (empty($instance['modifiers']['transition'])) ?: $return['overlay_class'][] = $instance['modifiers']['transition'];
    67             (empty($instance['modifiers']['transition_toggle'])) ?: $return['wrap_class'][] = $instance['modifiers']['transition_toggle'];
    68             $return['content_class'] = array();
    69             (empty($instance['modifiers']['content_transition'])) ?: $return['content_class'][] = $instance['modifiers']['content_transition'];
    70         }
     64        (empty($instance['modifiers']['transition'])) ?: $return['overlay_class'][] = $instance['modifiers']['transition'];
     65        (empty($instance['modifiers']['transition_toggle'])) ?: $return['wrap_class'][] = $instance['modifiers']['transition_toggle'];
     66        $return['content_class'] = array();
     67        (empty($instance['modifiers']['content_transition'])) ?: $return['content_class'][] = $instance['modifiers']['content_transition'];
     68
    7169        return $return;
    7270    }
     
    7876        $return['overlay'] = array(
    7977            'type' => 'section',
    80             'label' => __( 'Overlay' , 'echelon-so' ),
     78            'label' => __( 'Data' , 'echelon-so' ),
    8179            'hide' => true,
    8280            'fields' => array(
  • echelon-so/trunk/widgets/eso-pricing/eso-pricing.php

    r2148033 r2166476  
    33/*
    44Widget Name: E: Pricing
    5 Description: Simple card like pricing boxes.
     5Description: Card based pricing box.
    66Author: Echelon
    77Author URI: https://echelonso.com
     
    1515            __('E: Pricing', 'echelon-so'),
    1616            array(
    17                 'description' => __('Simple card like pricing boxes.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
     17                'description' => __('Card based pricing box.', 'echelon-so' ),
    1918            ),
    2019            array(),
     
    9392        $return['pricing'] = array(
    9493            'type' => 'section',
    95             'label' => __( 'Pricing' , 'echelon-so' ),
     94            'label' => __( 'Data' , 'echelon-so' ),
    9695            'hide' => true,
    9796            'fields' => array(
  • echelon-so/trunk/widgets/eso-radial/eso-radial.php

    r2148033 r2166476  
    1616            array(
    1717                'description' => __('A radial progress bar or odometer.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
    1918            ),
    2019            array(),
     
    9190        $return['radial'] = array(
    9291            'type' => 'section',
    93             'label' => __( 'Radial' , 'echelon-so' ),
     92            'label' => __( 'Data' , 'echelon-so' ),
    9493            'hide' => true,
    9594            'fields' => array(
  • echelon-so/trunk/widgets/eso-radial/tpl/default.php

    r2140165 r2166476  
    1 <div id="<?php echo $int_id;?>" class="eso-radial uk-text-center uk-position-relative" uk-scrollspy="cls: eso; hidden: false; offset-top: -<?php echo $trigger_distance; ?>;">
     1<div id="<?php echo $int_id;?>" class="eso-radial uk-text-center uk-position-relative" uk-scrollspy="cls: eso; hidden: false; offset-top: -<?php echo $trigger_distance; ?>; delay: 10;">
    22
    33    <?php if (!empty($title)) : ?>
  • echelon-so/trunk/widgets/eso-reuse-layout/eso-reuse-layout.php

    r2148033 r2166476  
    1919            array(
    2020                'description' => __('Display the content from a reusable layout.', 'echelon-so' ),
    21                 'panels_groups' => array('echelon')
    2221            ),
    2322            false,
     
    3332        $form['option'] = array(
    3433            'type' => 'section',
    35             'label' => __( 'Layout' , 'echelon-so' ),
     34            'label' => __( 'Data' , 'echelon-so' ),
    3635            'hide' => true,
    3736            'fields' => array(
  • echelon-so/trunk/widgets/eso-slabtext/eso-slabtext.php

    r2148033 r2166476  
    1515            array(
    1616                'description' => __('Automatically format text into square blocks.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
    1817            ),
    1918            array(),
     
    4948        $return['slabtext'] = array(
    5049            'type' => 'section',
    51             'label' => __( 'Text' , 'echelon-so' ),
     50            'label' => __( 'Data' , 'echelon-so' ),
    5251            'hide' => true,
    5352            'fields' => array(
  • echelon-so/trunk/widgets/eso-slider/eso-slider.php

    r2148033 r2166476  
    33/*
    44Widget Name: E: Slider
    5 Description: Slider framework to load other widgets into.
     5Description: Slider framework for other widgets.
    66Author: Echelon
    77Author URI: https://echelonso.com
     
    1616            __('E: Slider', 'echelon-so'),
    1717            array(
    18                 'description' => __('Slider framework to load other widgets into.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
     18                'description' => __('Slider framework for other widgets.', 'echelon-so' ),
    2019            ),
    2120            array(),
     
    7170
    7271        $return['transition'] = !empty($instance['modifiers']['transition']) ? 'uk-transition-active' : 'eso';
     72
     73        // lightbox
     74        $return['lightbox'] = '';
     75        (empty($instance['slider']['lightbox'])) ?: $return['lightbox'] = 'uk-lightbox';
    7376
    7477        return $return;
     
    97100        $return['slider'] = array(
    98101            'type' => 'section',
    99             'label' => __( 'Slider' , 'echelon-so' ),
     102            'label' => __( 'Data' , 'echelon-so' ),
    100103            'hide' => true,
    101104            'fields' => array(
     
    112115                    )
    113116                ),
     117                'lightbox' => array(
     118                    'type' => 'select',
     119                    'default' => '0',
     120                    'label' => __('Lightbox', 'echelon-so'),
     121                    'description' => __('Setting this will allow the Slider to work with Lightbox Component widgets.', 'echelon-so'),
     122                    'options' => array(
     123                        '0' => __('-', 'echelon-so'),
     124                        'slide' => __('Slide', 'echelon-so'),
     125                    )
     126                )
    114127            )
    115128        );
  • echelon-so/trunk/widgets/eso-slider/tpl/default.php

    r2148033 r2166476  
    55        <div class="uk-position-relative <?php echo esc_attr(implode(' ', $nav_wrap_class)); ?>">
    66
    7             <div class="uk-slider-container">
     7            <div <?php echo $lightbox; ?> class="uk-slider-container">
    88
    99                <div class="uk-slider-items uk-grid <?php echo esc_attr(implode(' ', $items_class)); ?>">
  • echelon-so/trunk/widgets/eso-smooth-scroll/eso-smooth-scroll.php

    r2148033 r2166476  
    1717            array(
    1818                'description' => __('Smooth scroll page links to their targets.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
    2019            ),
    2120            false,
     
    2322                'scroll' => array(
    2423                    'type' => 'section',
    25                     'label' => __( 'Smooth Scroll' , 'echelon-so' ),
     24                    'label' => __( 'Data' , 'echelon-so' ),
    2625                    'hide' => true,
    2726                    'fields' => array(
  • echelon-so/trunk/widgets/eso-tabs/eso-tabs.php

    r2148033 r2166476  
    33/*
    44Widget Name: E: Tabs
    5 Description: Description coming soon.
     5Description: Animated content switching tabs.
    66Author: Echelon
    77Author URI: https://echelonso.com
     
    1717            array(
    1818                'description' => __('Animated content switching tabs.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
    2019            ),
    2120            array(),
     
    6059        $return['tabs'] = array(
    6160            'type' => 'section',
    62             'label' => __( 'Tabs' , 'echelon-so' ),
     61            'label' => __( 'Data' , 'echelon-so' ),
    6362            'hide' => true,
    6463            'fields' => array(
  • echelon-so/trunk/widgets/eso-tabs/tpl/default.php

    r2140169 r2166476  
    22
    33    <?php foreach ($tabs_repeater as $k => $v) : ?>
    4         <li>
     4        <li class="uk-padding-remove">
    55            <a href="#" class="<?php echo esc_attr(implode(' ', $link_class)); ?>">
    66
  • echelon-so/trunk/widgets/eso-template-tag/eso-template-tag.php

    r2148033 r2166476  
    1616            array(
    1717                'description' => __('Use a template tag inside a looped Echelon layout.', 'echelon-so' ),
    18                 'panels_groups' => array('echelon')
    1918            ),
    2019            array(),
     
    3635        $return['tag_class'] = array();
    3736        (empty($instance['modifiers']['size'])) ?: $return['tag_class'][] = $instance['modifiers']['size'];
    38         (empty($instance['modifiers']['weight']) && $instance['text']['font'] != 'default') ?: $return['tag_class'][] = $instance['modifiers']['weight'];
     37        (empty($instance['modifiers']['weight'])) ?: $return['tag_class'][] = $instance['modifiers']['weight'];
    3938        (empty($instance['modifiers']['transform'])) ?: $return['tag_class'][] = $instance['modifiers']['transform'];
    4039        (empty($instance['modifiers']['alignment'])) ?: $return['tag_class'][] = $instance['modifiers']['alignment'];
     
    5453        $return['template_tag'] = array(
    5554            'type' => 'select',
    56             'label' => __( 'Template Tag', 'echelon-so' ),
     55            'label' => __( 'Data', 'echelon-so' ),
    5756            'default' => '0',
    5857            'options' => array(
  • echelon-so/trunk/widgets/eso-text-rotator/eso-text-rotator.php

    r2148033 r2166476  
    1515            array(
    1616                'description' => __('Automaitcally rotate text with animations.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
    1817            ),
    1918            array(),
     
    6059        $return['text_rotator'] = array(
    6160            'type' => 'section',
    62             'label' => __( 'Text' , 'echelon-so' ),
     61            'label' => __( 'Data' , 'echelon-so' ),
    6362            'hide' => true,
    6463            'fields' => array(
     
    109108                        'fade' => __('Fade', 'echelon-so'),
    110109                        'dissolve' => __('Dissolve', 'echelon-so'),
    111                         'flip' => __('Flip', 'echelon-so'),
    112                         'flipUp' => __('Flip Up', 'echelon-so'),
    113                         'flipCube' => __('Flip Cube', 'echelon-so'),
    114                         'flipCubeUp' => __('Flip Cube Up', 'echelon-so'),
    115                         'spin' => __('Spin', 'echelon-so'),
    116110                    )
    117111                ),
  • echelon-so/trunk/widgets/eso-text/eso-text.php

    r2148033 r2166476  
    1515            array(
    1616                'description' => __('Display text blocks in various sizes.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
    1817            ),
    1918            array(),
     
    5150        $return['text'] = array(
    5251            'type' => 'section',
    53             'label' => __( 'Text' , 'echelon-so' ),
     52            'label' => __( 'Data' , 'echelon-so' ),
    5453            'hide' => true,
    5554            'fields' => array(
  • echelon-so/trunk/widgets/eso-twitter-feed/eso-twitter-feed.php

    r2148033 r2166476  
    22/*
    33Widget Name: E: Twitter Feed
    4 Description: Display your most recent tweets.
     4Description: Display your recent tweets.
    55Author: Echelon
    66Author URI: https://echelonso.com
     
    1414            __('E: Twitter Feed', 'echelon-so'),
    1515            array(
    16                 'description' => __('Display your most recent tweets.', 'echelon-so' ),
    17                 'panels_groups' => array('echelon')
     16                'description' => __('Display your recent tweets.', 'echelon-so' ),
    1817            ),
    1918            array(),
     
    6160        $return['twitter_feed'] = array(
    6261            'type' => 'section',
    63             'label' => __( 'Twitter Feed' , 'echelon-so' ),
     62            'label' => __( 'Data' , 'echelon-so' ),
    6463            'hide' => true,
    6564            'fields' => array(
  • echelon-so/trunk/widgets/eso-video/eso-video.php

    r2148033 r2166476  
    33/*
    44Widget Name: E: Video
    5 Description: Description coming soon.
     5Description: Autoplay and cover based videos, with and without controls.
    66Author: Echelon
    77Author URI: https://echelonso.com
     
    1616            __('E: Video', 'echelon-so'),
    1717            array(
    18                 'description' => __('Description coming soon.', 'echelon-so' ),
    19                 'panels_groups' => array('echelon')
     18                'description' => __('Autoplay and cover based videos, with and without controls.', 'echelon-so' ),
    2019            ),
    2120            array(),
     
    8887        $return['video'] = array(
    8988            'type' => 'section',
    90             'label' => __( 'Video' , 'echelon-so' ),
     89            'label' => __( 'Data' , 'echelon-so' ),
    9190            'hide' => true,
    9291            'fields' => array(
Note: See TracChangeset for help on using the changeset viewer.