golden hour
/home/godaofbq/hyperxmed.com/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack
⬆️ Go Up
Upload
File/Folder
Size
Actions
assets
-
Del
OK
icon-list.php
126.53 KB
Del
OK
icons.php
1.02 KB
Del
OK
init.php
1.02 KB
Del
OK
Edit: init.php
<?php namespace ElementsKit_Lite\Modules\ElementsKit_Icon_Pack; defined('ABSPATH') || exit; class Init { public static function get_url() { return \ElementsKit_Lite::module_url() . 'elementskit-icon-pack/'; } public static function get_dir() { return \ElementsKit_Lite::module_dir() . 'elementskit-icon-pack/'; } public function __construct() { add_filter('elementor/icons_manager/additional_tabs', array($this, 'register_icon_pack_to_elementor')); } public function register_icon_pack_to_elementor($font) { $font_new['ekiticons'] = array( 'name' => 'ekiticons', 'label' => esc_html__( 'ElementsKit Icon Pack', 'elementskit-lite' ), 'url' => self::get_url() . 'assets/css/ekiticons.css', 'prefix' => 'icon-', 'displayPrefix' => 'icon', 'labelIcon' => 'icon icon-ekit', 'ver' => \ElementsKit_Lite::version(), 'fetchJson' => self::get_url() . 'assets/js/ekiticons.json', 'native' => true, ); return array_merge($font, $font_new); } }
Save