Site logo

Archived topic

Lightweight Social Icons Request

8 replies · Started by iqbal on January 22, 2016

Viewing posts 1–9 of 9

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

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/

This archived topic is closed to new replies.