at path:
ROOT
/
wp-content
/
plugins
/
kadu-plugin
/
inc
/
kadu-icon.php
run:
R
W
Run
custom-widget
DIR
2025-12-13 10:18:27
R
W
Run
options
DIR
2025-12-13 10:18:27
R
W
Run
post-type
DIR
2025-12-13 10:18:27
R
W
Run
class-template.php
1.35 KB
2024-10-16 22:18:55
R
W
Run
Delete
Rename
csf-custom-icon.php
6 KB
2024-10-16 22:18:55
R
W
Run
Delete
Rename
helper.php
10.68 KB
2024-10-16 22:18:55
R
W
Run
Delete
Rename
kadu-icon.php
1.02 KB
2024-10-16 22:18:55
R
W
Run
Delete
Rename
kadu-plugin-helper.php
3.08 KB
2024-10-16 22:18:55
R
W
Run
Delete
Rename
error_log
up
📄
kadu-icon.php
Save
<?php if(!function_exists('kadu_register_custom_icon_library')){ add_filter('elementor/icons_manager/additional_tabs', 'kadu_register_custom_icon_library'); function kadu_register_custom_icon_library($tabs){ $custom_tabs = [ 'extra_icon2' => [ 'name' => 'kadu-flat-icon', 'label' => esc_html__( 'Flaticon', 'kadu' ), 'url' => get_template_directory_uri() . '/assets/css/flaticon_mycollection.css', 'enqueue' => [ get_template_directory_uri() . '/assets/css/flaticon_mycollection.css' ], 'prefix' => 'flaticon-', 'displayPrefix' => 'flaticon', 'labelIcon' => 'family-insurance', 'ver' => KADU_VERSION, 'fetchJson' => get_template_directory_uri() . '/assets/js/flaticon.js?v='.KADU_VERSION, 'native' => true, ] ]; $tabs = array_merge($custom_tabs, $tabs); return $tabs; } }