Archived topic
Lightweight Social Icons Request
8 replies · Started by iqbal on January 22, 2016
Hello,
Is it possible to request a new icon for new release of Lightweight Social Icons plugin ?
I'd like to have Telegram Messenger (https://telegram.org/).
Meanwhile, how can I add it by editing files on my website ?
Best Regards
Iqbal
Hi there,
Does it have an icon font? Preferably here: http://fontello.com
Hello Tom,
Well, there is this one (http://fortawesome.github.io/Font-Awesome/icon/paper-plane/) that looks a lot like Telegram Messenger logo.
Best Regards
Iqbal
The paper plane icon is used by the "Newsletter" item - let me look into a way for you to change the "Newsletter" text to something else.
Will get back to you :)
Hello Tom,
Thanks a lot.
Will be waiting for a solution from you.
Best Regards
Iqbal
Hi Tom,
could you please add XING too?
Regards, Sven
Hi Sven,
I believe XING was added to version 0.8 :)
prompt delivery... great!
;-)
I think our best bet here is to add a new icon:
add_filter( 'lsi_icons_defaults','lsi_telegram_messenger' );
function lsi_telegram_messenger( $options )
{
$options['telegram-messenger']['id'] = 'telegram-messenger';
$options['telegram-messenger']['name'] = 'Telegram Messenger';
return $options;
}
Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/
Then add this CSS:
.lsicon-telegram-messenger:before { content: '\e83c'; }
Adding CSS: https://generatepress.com/knowledgebase/adding-css/