Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter june01

    (@june01)

    Thanks I’ve added the new social icons but how can I set the original brand color to them? Also the telegram icon does not display correctly. I’ve set the class of the icon with no circle around it, but it displays the circle. I don’t have this problem in the topbar.

    Hi,

    try to clear the cache and check. If not resolved, Please share the snapshot where you getting the issue and page URL also.

    Thread Starter june01

    (@june01)

    Cleared the cache but still same problem. I’ve solved the color problem using my own CSS code but I need to change the Telegram icon.

    This is my code:

    // Telegram icon
    	$array['telegram'] = array(
    		'name' => 'Telegram',
    		'icon_class' => 'fab fa-telegram-plane',
    	);
    

    This is the link to the website: my website

    As you can see in the footer it’s using the telegram class for the icon and not telegram-plane.

    Hi,

    It seems to pick code from somewhere else. can you please try a different ICON and check it is working or not, just for testing.

    Thread Starter june01

    (@june01)

    I’ve tested a bit and it seems like it’s ignoring the class provided in icon_class and instead it uses the array key. I’ve changed the code from $array['telegram'] to $array['telegram-plane'] and it displays the icon correctly now. You can see it in the footer of the website link I’ve sent.

    This is the new code:

    // Telegram icon
    	$array['telegram'] = array(
    		'name' => 'Telegram',
    		'icon_class' => 'fab fa-telegram-plane',
    	);
    

    Hi,

    Then it seems the plugin conflict issue.
    Try to disable all the plugins one by one and check if there is a conflict issue.

    Thread Starter june01

    (@june01)

    deactivated all plugins but same problem. It still ignores the icon_class and uses the array key instead.

    Just saw that I made a mistake in my previous message. The new code looks like this:

    // Telegram icon
    	$array['telegram-plane'] = array(
    		'name' => 'Telegram',
    		'icon_class' => 'fab fa-telegram-plane',
    	);
    
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Create new icon in social icon widget’ is closed to new replies.