Before you ask please READ THIS

Adding New Social Buttons

Hi,

How can I add new social media icon next to the existing ones, in footer?

I want to add Medium's logo.

Thanks.

Comments

  • AirAir
    Posts: 10,970
    Hello:-)

    Try adding such code in functions.php file in theme

    add_filter('apollo13framework_social_icons_list', function($icons){
    $icons['new_service_medium'] = array( 'fa fa-medium', 'Medium' );
    return $icons;
    });
    add it before $apollo13framework_a13 = new Apollo13Framework();

    Now you should be able to add your service form admin panel.

    With kind regards.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion