Add More Icons conflict with WordPress Netword Site?
-
Hello,
here is what I add to my function.php to change/add new iconadd_filter( 'storm_social_icons_networks', 'storm_social_icons_networks'); function storm_social_icons_networks( $networks ) { $extra_icons = array ( 'youtu' => array( // Enable this icon for any URL containing this text 'name' => 'youtu', // Default menu item label 'class' => 'yout', // Custom class 'icon' => 'icon-toggle-right', // FontAwesome class //'icon-sign' => 'icon-rss-square' // May not be available. Check FontAwesome. ), ); $extra_icons = array_merge( $networks, $extra_icons ); return $extra_icons; } add_filter( 'storm_social_icons_use_latest', '__return_true' );
I’m getting the result as expected but getting an error
Notice: Undefined index: icon-sign in /var/www/vhosts/rezaur.net/public_html/wp-content/plugins/menu-social-icons/classes/msi-frontend.php on line 25
Appreciate your help.
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Add More Icons conflict with WordPress Netword Site?’ is closed to new replies.