Before you ask please READ THIS

tiktok social icon

Hello,

In the social icons list in the customizer editor I see all kinds of social icons but no TikTok…how do I get the tiktok social icon there? It’s the biggest social platform on the web…

I was told on the comments page of themeforest to ask this question here. I bought the OneLander | Creative Landing Page WordPress Theme.

Comments

  • AirAir
    Posts: 10,970
    Hello :-)

    There is no tiktok icon because of old "font awesome" script used in the theme.
    We can not update it at the moment, but I have prepared code for you to let you add tiktok icon.
    In Elmentor there is newer Font Awesome used, so it will make icon appear after adding below code.

    Try adding such code in the functions.php file in the theme

    add_filter('apollo13framework_social_icons_list', function($icons){
    $icons['new_service_tiktok'] = array( 'fab fa-tiktok', 'Tiktok' );
    return $icons;
    });
    add it before $apollo13framework_a13 = new Apollo13Framework();

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

    PS. best would to use child theme for this modification https://rifetheme.com/apollo13-framework/docs/modifications-of-theme/changing-theme-functions/ but you don't need if you don't plan to update for some time.

    With kind regards.
  • Thank you very much, you are a great person
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!