• hello
    i’m new to use wordpress and also i dont really understand php, so in this case i want to remove social media icon in header, i already use inspect elemen and i try to delete <div class=”socialLine”> and its work, the social media button disappear. so i try to edit header.php via ftp and once again i try to delete <div class=”socialLine”>, but there is no change happen, so i try to delete <div class=”site-social”> anddd the template header crashed when i reload my website…
    so can you explain to me the algorithm/step how to remove social media button

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • CPM

    (@cpmindustrial)

    bump. would be great to have icons in the footer only.

    CPM

    (@cpmindustrial)

    was able to figure this one out. in the theme editor (under “appearance” in wordpress) select Theme Header (header.php) and find this line:
    <div class=”site-social”>

    you’ll just need to delete this section. for me it was lines 176-183. this successfully deleted the social icons from the header. fortunately, they still show in the footer. here is everything i removed:

    <div class=”site-social”>
    <div class=”socialLine”>
    <?php fortunatopro_getSocialWidget(); ?>
    <?php if ( function_exists( ‘ot_get_option’ ) && ot_get_option(‘show_search_on_page’, ‘on’) == ‘on’ ) : ?>
    <div class=”openSearch”><i class=”fa fa-search”></i></div>
    <?php endif; ?>
    </div>
    </div>

    cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘i want to remove social media button’ is closed to new replies.