• Resolved smarfixer007

    (@smarfixer007)


    i want to add social icon tiktok on footer section after copyright its not available by default. I add it using some css and html code snippet but issue its not display properly

    Please help me

    thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author apollo13themes

    (@apollo13themes)

    Hello.

    Try adding this 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.

    The TikTok social icon will be implemented by default in upcoming updates.

    Thread Starter smarfixer007

    (@smarfixer007)

    thanks i get it fix using code you provided

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.