Plugin Directory

Changeset 2255129


Ignore:
Timestamp:
03/05/2020 02:29:49 PM (6 years ago)
Author:
alithemes
Message:
  • update to 2.1.0
Location:
embe-core/trunk
Files:
4 added
4 edited

Legend:

Unmodified
Added
Removed
  • embe-core/trunk/embe-core.php

    r2252051 r2255129  
    44Plugin URI: http://embe.live/intro
    55Description: Core Features for EmBe Theme, this is required plugin for this theme
    6 Version: 2.0.9
     6Version: 2.1.0
    77Author: alithemes.com
    88Author URI: alithemes.com
  • embe-core/trunk/inc/helper/helper.php

    r2252051 r2255129  
    7878      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/embe-redux-header-8.png'
    7979    );
     80    $header_layout['header_9'] = array(
     81      'title' => esc_html__( 'Header 9', 'alith-core' ),
     82      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/embe-redux-header-9.png'
     83    );
    8084    return $header_layout;
    8185  }
     
    255259}
    256260
     261/* Bottom column options */
     262if ( !function_exists( 'bottom_layout' ) ) {
     263  function bottom_layout() {
     264    $bottom_layout = array();
     265    $bottom_layout['bottom_three_columns'] = array(
     266      'title' => esc_html__( 'Three columns', 'alith-core' ),
     267      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/bototm-column-3.png'
     268    );
     269    $bottom_layout['bottom_four_columns'] = array(
     270      'title' => esc_html__( 'Four columns', 'alith-core' ),
     271      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/bototm-column-4.png'
     272    );
     273    $bottom_layout['bottom_five_columns'] = array(
     274      'title' => esc_html__( 'Five columns', 'alith-core' ),
     275      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/bototm-column-5.png'
     276    ); 
     277    return $bottom_layout;
     278  }
     279}
     280
    257281/* Masonry column options */
    258282if ( !function_exists( 'masonry_column' ) ) {
     
    366390      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_carausel_big.png'
    367391    );
    368 
    369392    $featured_layout['carausel'] = array(
    370393      'title' => esc_html__( 'Carausel', 'alith-core' ),
    371394      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_carausel.png'
    372395    );
    373 
    374396    $featured_layout['carausel_boxed'] = array(
    375397      'title' => esc_html__( 'Carausel Boxed', 'alith-core' ),
    376398      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_carausel_boxed.png'
    377399    );
    378 
    379400    $featured_layout['carausel_small'] = array(
    380401      'title' => esc_html__( 'Carausel Small', 'alith-core' ),
    381402      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_carausel_small.png'
    382403    );
    383 
    384404    $featured_layout['carausel_columns'] = array(
    385405      'title' => esc_html__( 'Carausel Columns', 'alith-core' ),
    386406      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_carausel_columns.png'
    387407    );
    388 
    389408    $featured_layout['grid'] = array(
    390409      'title' => esc_html__( 'Grid', 'alith-core' ),
    391410      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_grid.png'
    392411    );
    393 
    394412    $featured_layout['grid_2'] = array(
    395413      'title' => esc_html__( 'Grid 2', 'alith-core' ),
    396414      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_grid_2.png'
    397415    );
    398 
    399416    $featured_layout['grid_3'] = array(
    400417      'title' => esc_html__( 'Grid 3', 'alith-core' ),
    401418      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_grid_3.png'
    402419    );
    403 
    404420    $featured_layout['grid_4'] = array(
    405421      'title' => esc_html__( 'Grid 4', 'alith-core' ),
    406422      'img' => ALITH_CORE_PLUGIN_URL . 'assets/imgs/featured_grid_4.png'
    407     );     
     423    );      
    408424    return $featured_layout;
    409425  }
  • embe-core/trunk/inc/redux-sections/section-footer.php

    r2252051 r2255129  
    1010    'icon'      => 'el el-bold',
    1111    'title'     => esc_html__( 'Bottom options', 'alith-core' ),
    12     'desc'      => esc_html__( 'These are options to modify and style your footer', 'alith-core' ),
     12    'desc'      => esc_html__( 'These are options to modify and style your site bottom', 'alith-core' ),
    1313    'subsection'    => true,
    1414    'fields'    => array(
     
    1919            'default'  => true,
    2020        ),
     21        array(
     22            'id'        => 'bottom_layout',
     23            'type'      => 'image_select',
     24            'title'     => esc_html__( 'Bottom layout', 'alith-core' ),
     25            'required'    => array('switch_footer_bottom','=','1'),
     26            'options'   => bottom_layout(),
     27            'default'   => 'bottom_four_columns'
     28        ),
     29        array(
     30            'id'       => 'bottom_padding',
     31            'type'     => 'spacing',
     32            'mode'     => 'padding',
     33            'required' => array('switch-featured','=','1'),
     34            'units'    => 'px',
     35            'title'    => __('Bottom padding', 'alith-core'),
     36            'output'   => array('.site-bottom'),
     37        ),
    2138        array(         
    2239            'id'       => 'footer_bottom_background',
  • embe-core/trunk/readme.txt

    r2252051 r2255129  
    7676
    7777== Changelog ==
    78 VERSION 2.0.9 [ Current ]
     78VERSION 2.1.0 [current]
     79- Add Women Blog demo
     80
     81VERSION 2.0.9
    7982- Add .POT file (for translate text, labels...)
    8083- Add Bartender demo
Note: See TracChangeset for help on using the changeset viewer.