Plugin Directory

Changeset 2217831


Ignore:
Timestamp:
12/25/2019 02:49:34 PM (6 years ago)
Author:
alithemes
Message:

update to 2.0

Location:
embe-core/trunk
Files:
2 edited

Legend:

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

    r2217825 r2217831  
    44 * Plugin URI: http://alithemes.com
    55 * Description: Core Features for EmBe Theme, this is required plugin for this theme
    6  * Version: 1.0
     6 * Version: 2.0
    77 * Author: alithemes.com
    88 * Author URI: alithemes.com
     
    2727    function alith_embe_plugin_enqueue_scripts() {
    2828        wp_enqueue_style( 'alith_embe_plugin_style', ALITH_CORE_PLUGIN_URL . 'assets/style.css', array(), '1.0');
    29         wp_enqueue_script('alith_embe_metabox_scripts', ALITH_CORE_PLUGIN_URL . 'assets/metabox.scripts.js',array('jquery'), '1.0',true);
     29        wp_enqueue_script('alith_embe_metabox_scripts', ALITH_CORE_PLUGIN_URL . 'assets/alithcore.scripts.js',array('jquery'), '1.0',true);
    3030    }
    3131    add_action( 'admin_enqueue_scripts', 'alith_embe_plugin_enqueue_scripts');
     
    5757include_once( 'widgets/categories_tabs.php' );
    5858
     59//color picker
     60if ( ! function_exists( 'alith_core_color_picker' ) ) {
     61    function alith_core_color_picker() {   
     62        wp_enqueue_style( 'wp-color-picker' );       
     63        wp_enqueue_script( 'wp-color-picker' );   
     64    }
     65    add_action( 'load-widgets.php', 'alith_core_color_picker' );
     66}
     67
    5968//Deactive plugin
    6069register_deactivation_hook(__FILE__, 'alith_core_deactivation');
  • embe-core/trunk/readme.txt

    r2216696 r2217831  
    7474== Changelog ==
    7575
    76 = VERSION 1.5 [ Current ] =
    77 * Add About tab when active theme
    78 * Mega menu build-in update
    79 * More Latest Post layout
    80 * Fix some CSS and Jquery bugs
    81 
    82 = VERSION 1.4 =
    83 * More options for sidebar
    84 
    85 = VERSION 1.3 =
    86 * Add Offcanvas options.
    87 * Fixed the image resize function.
    88 
    89 = VERSION 1.2 =
    90 * Add Lifestyle Layout Demo
    91 * Add 6 widget title styles
    92 * Fixed somes CSS bugs
    93 
    94 = VERSION 1.1 =
     76= VERSION 2.0 =
    9577* Add sidebar & widgets options
     78* Change skill
    9679
    9780= VERSION 1.0 =
Note: See TracChangeset for help on using the changeset viewer.